Skip to content

Commit 12fa588

Browse files
author
Milan Sekulic
committed
UPdate adapter
1 parent 2a9f074 commit 12fa588

File tree

65 files changed

+114
-172
lines changed

Some content is hidden

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

65 files changed

+114
-172
lines changed

.gitignore

100644100755
File mode changed.

app/.gitignore

100644100755
File mode changed.

app/build.gradle

100644100755
Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,37 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlin-kapt'
55
apply plugin: 'androidx.navigation.safeargs'
6-
76
android {
7+
compileSdkVersion 28
8+
89

910

10-
compileSdkVersion 28
1111
defaultConfig {
1212
applicationId "com.example.datasourceadapter"
1313
minSdkVersion 21
1414
targetSdkVersion 28
1515
versionCode 1
1616
versionName "1.0"
17-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
18-
multiDexEnabled true
17+
18+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
19+
1920
}
21+
22+
23+
2024
buildTypes {
2125
release {
2226
minifyEnabled false
2327
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2428
}
2529
}
26-
packagingOptions {
27-
exclude 'META-INF/LICENSE.txt'
28-
exclude 'META-INF/rxjava.properties' //for mix rx1 & rx2
29-
}
30-
compileOptions {
31-
targetCompatibility 1.8
32-
sourceCompatibility 1.8
33-
}
3430

3531
kapt {
3632
correctErrorTypes = true
3733
generateStubs = true
3834
}
39-
}
40-
4135

36+
}
4237

4338
dependencies {
4439
implementation fileTree(dir: 'libs', include: ['*.jar'])

app/proguard-rules.pro

100644100755
File mode changed.

app/src/androidTest/java/com/example/datasourceadapter/ExampleInstrumentedTest.kt

Lines changed: 0 additions & 24 deletions
This file was deleted.

app/src/main/AndroidManifest.xml

100644100755
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8"?>
21
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools" package="com.novemio.datasourceadapter">
2+
xmlns:tools="http://schemas.android.com/tools"
3+
package="com.example.app">
4+
45

56
<application
67
android:allowBackup="true"
@@ -20,5 +21,4 @@
2021
</intent-filter>
2122
</activity>
2223
</application>
23-
24-
</manifest>
24+
</manifest>

app/src/main/java/com/example/datasourceadapter/AppApplication.kt

100644100755
File mode changed.

app/src/main/java/com/example/datasourceadapter/di/ActivityBuilder.kt

100644100755
File mode changed.

app/src/main/java/com/example/datasourceadapter/di/AppComponent.kt

100644100755
File mode changed.

app/src/main/java/com/example/datasourceadapter/di/scope/ActivityContext.kt

100644100755
File mode changed.

0 commit comments

Comments
 (0)