Skip to content

Commit 0aa27ce

Browse files
committed
Refactoring, java 8, update design, optimization
1 parent 6e50986 commit 0aa27ce

172 files changed

Lines changed: 6666 additions & 58449 deletions

File tree

Some content is hidden

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

.idea/codeStyles/Project.xml

Lines changed: 116 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: 40 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ android {
77
applicationId "com.mcal.disassembler"
88
minSdkVersion 14
99
targetSdkVersion 29
10-
versionCode 17
11-
versionName "1.7"
12-
ndk {
10+
versionCode 19
11+
versionName "1.9"
12+
/*ndk {
1313
abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
14-
}
14+
}*/
1515
}
1616

17-
externalNativeBuild {
17+
/*externalNativeBuild {
1818
ndkBuild {
1919
path 'src/main/jni/Android.mk'
2020
}
21-
}
21+
}*/
2222

2323
buildTypes {
2424
release {
@@ -28,6 +28,11 @@ android {
2828
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2929
}
3030
}
31+
compileOptions {
32+
sourceCompatibility = 1.8
33+
targetCompatibility = 1.8
34+
}
35+
buildToolsVersion = '29.0.2'
3136
}
3237

3338
dependencies {
@@ -36,7 +41,7 @@ dependencies {
3641
implementation 'androidx.cardview:cardview:1.0.0'
3742
implementation 'androidx.annotation:annotation:1.1.0'
3843
implementation 'com.google.android.material:material:1.0.0'
39-
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
44+
implementation 'com.anjlab.android.iab.v3:library:1.1.0'
4045
implementation 'com.jakewharton:butterknife:8.5.1'
4146
//annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
4247
implementation 'com.nineoldandroids:library:2.4.0'

0 commit comments

Comments
 (0)