Skip to content

Commit d7d2aaa

Browse files
committed
Initial Commit.
0 parents  commit d7d2aaa

Some content is hidden

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

50 files changed

+1427
-0
lines changed

.gitignore

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

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 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/inspectionProfiles/Project_Default.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/misc.xml

Lines changed: 38 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.

.idea/vcs.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.

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: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
4+
5+
android {
6+
compileSdkVersion 28
7+
defaultConfig {
8+
applicationId "spartons.com.javalocationdistancetrackingapp"
9+
minSdkVersion 15
10+
targetSdkVersion 28
11+
versionCode 1
12+
versionName "1.0"
13+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
14+
}
15+
buildTypes {
16+
release {
17+
minifyEnabled false
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19+
}
20+
}
21+
compileOptions {
22+
sourceCompatibility JavaVersion.VERSION_1_8
23+
targetCompatibility JavaVersion.VERSION_1_8
24+
}
25+
}
26+
27+
dependencies {
28+
implementation fileTree(dir: 'libs', include: ['*.jar'])
29+
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
30+
implementation 'com.android.support:appcompat-v7:28.0.0'
31+
implementation 'com.android.support:support-media-compat:28.0.0'
32+
implementation 'com.android.support:recyclerview-v7:28.0.0'
33+
implementation 'com.android.support:cardview-v7:28.0.0'
34+
implementation 'com.android.support:animated-vector-drawable:28.0.0'
35+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
36+
37+
// PlayServices dependency
38+
implementation 'com.google.android.gms:play-services-maps:16.0.0'
39+
implementation 'com.google.android.gms:play-services-location:16.0.0'
40+
41+
// Material Dialog dependency
42+
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
43+
44+
// Map services dependency
45+
implementation 'com.google.maps:google-maps-services:0.2.4'
46+
47+
// View model dependency
48+
implementation 'android.arch.lifecycle:viewmodel:1.1.1'
49+
implementation 'android.arch.lifecycle:extensions:1.1.1'
50+
51+
// Rx java dependency
52+
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
53+
54+
// Rx Android dependency
55+
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
56+
57+
testImplementation 'junit:junit:4.12'
58+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
59+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
60+
}

0 commit comments

Comments
 (0)