Skip to content

Commit 4ea057b

Browse files
committed
fixing bug
1 parent 7c3be64 commit 4ea057b

File tree

6 files changed

+46
-16
lines changed

6 files changed

+46
-16
lines changed

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

annotations/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
apply plugin: 'kotlin'
22

3+
apply plugin: 'kotlin-android-extensions'
4+
5+
apply plugin: 'kotlin-kapt'
6+
37

48
apply plugin: 'com.github.dcendents.android-maven'
59

@@ -8,7 +12,9 @@ group='com.github.devmike01.jadesharedpreference'
812
dependencies {
913
implementation fileTree(dir: 'libs', include: ['*.jar'])
1014
implementation "org.jetbrains.kotlin:kotlin-stdlib"
11-
compileOnly 'com.android.support:support-annotations:28.0.0'
15+
implementation 'com.android.support:support-annotations:28.0.0'
16+
// implementation project(':binder')
17+
1218
}
1319

1420
sourceCompatibility = "7"

app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ dependencies {
2929
//implementation 'com.github.devmike01.JadeSharedPreference:jadesharedpreference-annotations:0.2.5'
3030
kapt project(':compiler')
3131
implementation project(':binder')
32-
33-
//implementation project(":annotations")
3432
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
3533

3634

binder/build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ apply plugin: 'com.github.dcendents.android-maven'
1111

1212
group='com.github.devmike01.jadesharedpreference'
1313

14-
//groupId: 'com.github.devmike01.Jadesharedpreference'
15-
//artifact id: 'jadesharedpreference-annotations'
1614

1715

1816
android {
@@ -23,7 +21,6 @@ android {
2321
targetSdkVersion 28
2422
versionCode 1
2523
versionName "1.0"
26-
consumerProguardFiles 'proguard-rules.pro'
2724
}
2825

2926
buildTypes {
@@ -39,7 +36,7 @@ android {
3936
dependencies {
4037
implementation fileTree(dir: 'libs', include: ['*.jar'])
4138

42-
api project(':annotations')
39+
implementation project(':annotations')
4340

4441
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
4542
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

binder/src/main/java/devmike/jade/com/binder/JadeSharedPreference.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ import android.content.Context
55
import android.util.Log
66
import java.lang.Error
77
import java.lang.IllegalArgumentException
8-
import java.lang.NullPointerException
9-
import java.lang.reflect.Array
10-
import java.lang.reflect.InvocationTargetException
11-
import kotlin.concurrent.thread
12-
import kotlin.reflect.KClass
138

149
public object JadeSharedPreference {
1510

compiler/src/main/java/devmike/jade/com/compiler/MyClass.java

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

0 commit comments

Comments
 (0)