Skip to content

Commit 6d0bfe3

Browse files
author
Azem Zejnilovic
committed
Initial commit
0 parents  commit 6d0bfe3

File tree

75 files changed

+2232
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2232
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

.idea/caches/build_file_checksums.ser

536 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 27
5+
defaultConfig {
6+
applicationId "com.example.bodhi64.general_knowledge_refresher"
7+
minSdkVersion 16
8+
targetSdkVersion 27
9+
versionCode 1
10+
versionName "1.0"
11+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
}
13+
buildTypes {
14+
release {
15+
minifyEnabled false
16+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17+
}
18+
}
19+
compileOptions {
20+
targetCompatibility 1.8
21+
sourceCompatibility 1.8
22+
}
23+
}
24+
25+
dependencies {
26+
implementation fileTree(dir: 'libs', include: ['*.jar'])
27+
implementation 'com.android.support:appcompat-v7:27.1.1'
28+
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
29+
testImplementation 'junit:junit:4.12'
30+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
31+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
32+
33+
implementation 'com.google.firebase:firebase-core:16.0.0'
34+
implementation 'com.google.firebase:firebase-database:16.0.1'
35+
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
36+
implementation 'com.android.support:cardview-v7:27.1.1'
37+
implementation 'com.android.support:design:27.1.1'
38+
implementation 'com.firebaseui:firebase-ui-database:1.2.0' // No trouble in compiling
39+
implementation 'com.squareup.picasso:picasso:2.71828'
40+
implementation "com.android.support:palette-v7:27.1.1"
41+
implementation 'com.github.bumptech.glide:glide:4.2.0'
42+
43+
44+
}
45+
apply plugin: 'com.google.gms.google-services'

app/google-services.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"project_info": {
3+
"project_number": "948878079097",
4+
"firebase_url": "https://knowledgerefresher-f6e73.firebaseio.com",
5+
"project_id": "knowledgerefresher-f6e73",
6+
"storage_bucket": "knowledgerefresher-f6e73.appspot.com"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:948878079097:android:e30bc9c446e8eb88",
12+
"android_client_info": {
13+
"package_name": "com.example.bodhi64.general_knowledge_refresher"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "948878079097-hm0qrn772d67jreunn9gnun8n06por7s.apps.googleusercontent.com",
19+
"client_type": 1,
20+
"android_info": {
21+
"package_name": "com.example.bodhi64.general_knowledge_refresher",
22+
"certificate_hash": "eff994fc7174ce4ddb730c6d588553b8e0a7b8c8"
23+
}
24+
},
25+
{
26+
"client_id": "948878079097-1qr48apfkng01a5b2tm1d8r82uma0hol.apps.googleusercontent.com",
27+
"client_type": 3
28+
}
29+
],
30+
"api_key": [
31+
{
32+
"current_key": "AIzaSyDAAfMYMr434VSM3vmDYoW4CYWJwkP6-Lw"
33+
}
34+
],
35+
"services": {
36+
"analytics_service": {
37+
"status": 1
38+
},
39+
"appinvite_service": {
40+
"status": 2,
41+
"other_platform_oauth_client": [
42+
{
43+
"client_id": "948878079097-1qr48apfkng01a5b2tm1d8r82uma0hol.apps.googleusercontent.com",
44+
"client_type": 3
45+
}
46+
]
47+
},
48+
"ads_service": {
49+
"status": 2
50+
}
51+
}
52+
}
53+
],
54+
"configuration_version": "1"
55+
}

0 commit comments

Comments
 (0)