Skip to content

Commit 4c7cf26

Browse files
first commit
0 parents  commit 4c7cf26

File tree

180 files changed

+8904
-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.

180 files changed

+8904
-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/.gitignore

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

.idea/assetWizardSettings.xml

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

.idea/compiler.xml

Lines changed: 6 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: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 55 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: 44 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: 10 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: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'io.fabric'
3+
buildscript {
4+
repositories {
5+
maven { url 'https://maven.fabric.io/public' }
6+
}
7+
8+
dependencies {
9+
classpath 'io.fabric.tools:gradle:1.+'
10+
}
11+
}
12+
repositories {
13+
maven { url 'https://maven.fabric.io/public' }
14+
}
15+
16+
android {
17+
compileSdkVersion 29
18+
aaptOptions.cruncherEnabled = false
19+
aaptOptions.useNewCruncher = false
20+
buildToolsVersion
21+
22+
defaultConfig {
23+
applicationId "com.example.map"
24+
minSdkVersion 21
25+
targetSdkVersion 29
26+
versionCode 2
27+
versionName "1.0"
28+
multiDexEnabled true
29+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
30+
}
31+
32+
lintOptions {
33+
checkReleaseBuilds false
34+
abortOnError false;
35+
disable 'deprecation'
36+
}//
37+
38+
dexOptions {
39+
javaMaxHeapSize "4g"
40+
jumboMode true
41+
}
42+
buildTypes {
43+
release {
44+
shrinkResources true
45+
minifyEnabled true
46+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
47+
}
48+
}
49+
compileOptions {
50+
sourceCompatibility JavaVersion.VERSION_1_8
51+
targetCompatibility JavaVersion.VERSION_1_8
52+
}
53+
allprojects {
54+
55+
tasks.withType(JavaCompile) {
56+
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
57+
}
58+
59+
repositories {
60+
mavenCentral()
61+
mavenLocal()
62+
jcenter()
63+
google()
64+
maven { url "https://jitpack.io" }
65+
maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
66+
maven {
67+
url "https://maven.google.com"
68+
}
69+
70+
}
71+
72+
packagingOptions {
73+
exclude 'META-INF/DEPENDENCIES.txt'
74+
exclude 'META-INF/LICENSE.txt'
75+
exclude 'META-INF/NOTICE.txt'
76+
exclude 'META-INF/NOTICE'
77+
exclude 'META-INF/LICENSE'
78+
exclude 'META-INF/DEPENDENCIES'
79+
exclude 'META-INF/notice.txt'
80+
exclude 'META-INF/license.txt'
81+
exclude 'META-INF/dependencies.txt'
82+
exclude 'META-INF/LGPL2.1'
83+
exclude 'META-INF/services/javax.annotation.processing.Processor'
84+
}
85+
86+
}
87+
}
88+
89+
dependencies {
90+
implementation fileTree(include: ['*.jar'], dir: 'libs')
91+
implementation('com.squareup.retrofit2:converter-simplexml:2.3.0') {
92+
exclude group: 'xpp3', module: 'xpp3'
93+
exclude group: 'stax', module: 'stax-api'
94+
exclude group: 'stax', module: 'stax'
95+
}
96+
implementation 'androidx.appcompat:appcompat:1.0.0'
97+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
98+
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
99+
testImplementation 'junit:junit:4.12'
100+
androidTestImplementation 'androidx.test:runner:1.1.0'
101+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
102+
implementation 'com.google.android.material:material:1.0.0'
103+
implementation 'androidx.recyclerview:recyclerview:1.0.0'
104+
implementation 'androidx.percentlayout:percentlayout:1.0.0'
105+
implementation 'com.mcxiaoke.volley:library-aar:1.0.0'
106+
implementation 'androidx.multidex:multidex:2.0.0'
107+
// All support Liberaries
108+
implementation 'de.hdodenhof:circleimageview:2.2.0'
109+
110+
// All google dependencies
111+
implementation 'com.firebaseui:firebase-ui-database:6.0.2'
112+
implementation 'com.google.firebase:firebase-database:19.1.0'
113+
implementation 'com.google.firebase:firebase-messaging:20.0.0'
114+
115+
implementation 'com.google.android.gms:play-services-gcm:17.0.0'
116+
implementation 'com.google.android.gms:play-services-maps:17.0.0'
117+
implementation 'com.google.android.gms:play-services-location:17.0.0'
118+
implementation 'com.google.android.gms:play-services-places:17.0.0'
119+
120+
121+
implementation 'org.jetbrains:annotations:15.0'
122+
}
123+
apply plugin: 'com.google.gms.google-services'
124+

0 commit comments

Comments
 (0)