Skip to content

Commit a98f34e

Browse files
committed
More bug fixes
1 parent 0aa27ce commit a98f34e

134 files changed

Lines changed: 947 additions & 4072 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.

app/build.gradle

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
apply plugin: 'com.android.application'
2+
apply plugin: 'kotlin-android'
23

34
android {
4-
compileSdkVersion 29
5+
compileSdkVersion 30
6+
buildToolsVersion = '30.0.1'
57

68
defaultConfig {
79
applicationId "com.mcal.disassembler"
810
minSdkVersion 14
911
targetSdkVersion 29
10-
versionCode 19
11-
versionName "1.9"
12+
versionCode 20
13+
versionName "2.0"
1214
/*ndk {
1315
abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
1416
}*/
@@ -32,17 +34,23 @@ android {
3234
sourceCompatibility = 1.8
3335
targetCompatibility = 1.8
3436
}
35-
buildToolsVersion = '29.0.2'
3637
}
3738

3839
dependencies {
3940
implementation project(':library')
4041
implementation fileTree(dir: 'libs', include: ['*.jar'])
4142
implementation 'androidx.cardview:cardview:1.0.0'
4243
implementation 'androidx.annotation:annotation:1.1.0'
43-
implementation 'com.google.android.material:material:1.0.0'
44+
implementation 'com.google.android.material:material:1.2.0'
4445
implementation 'com.anjlab.android.iab.v3:library:1.1.0'
4546
implementation 'com.jakewharton:butterknife:8.5.1'
4647
//annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
4748
implementation 'com.nineoldandroids:library:2.4.0'
49+
implementation 'org.jetbrains:annotations:15.0'
50+
implementation "androidx.core:core-ktx:+"
51+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
52+
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
53+
}
54+
repositories {
55+
mavenCentral()
4856
}

app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
-renamesourcefileattribute SourceFile
44
-repackageclasses disassembler
55

6-
-keep class com.mcal.disassembler.MainActivity
6+
-keep class com.mcal.disassembler.activities.MainActivity

app/release/app-release.aab

2.91 MB
Binary file not shown.

app/release/output-metadata.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": 1,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.mcal.disassembler",
8+
"variantName": "release",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"properties": [],
14+
"versionCode": 19,
15+
"versionName": "1.9",
16+
"enabled": true,
17+
"outputFile": "app-release.apk"
18+
}
19+
]
20+
}

app/src/main/AndroidManifest.xml

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@
1212
<application
1313
android:label="@string/app_name"
1414
android:icon="@mipmap/ic_launcher"
15+
android:name=".App"
1516
android:largeHeap="true"
1617
android:theme="@style/AppTheme"
1718
android:allowBackup="true"
1819
android:fullBackupContent="true"
1920
android:requestLegacyExternalStorage="true"
20-
tools:ignore="GoogleAppIndexingWarning">
21+
tools:ignore="GoogleAppIndexingWarning"
22+
tools:targetApi="q">
2123

2224
<activity
23-
android:name="com.mcal.disassembler.MainActivity"
25+
android:name="com.mcal.disassembler.activities.MainActivity"
2426
android:label="@string/app_name">
2527

2628
<intent-filter>
@@ -34,33 +36,43 @@
3436
</activity>
3537

3638
<activity
37-
android:name="com.mcal.disassembler.SymbolsActivity"
39+
android:name="com.mcal.disassembler.activities.SymbolsActivity"
3840
android:label="@string/symbolsActivity"/>
3941

4042
<activity
41-
android:name="com.mcal.disassembler.ClassActivity"
43+
android:name="com.mcal.disassembler.activities.ClassActivity"
4244
android:label="@string/classActivity"/>
4345

4446
<activity
45-
android:name="com.mcal.disassembler.SymbolActivity"
47+
android:name="com.mcal.disassembler.activities.SymbolActivity"
4648
android:label="@string/symbolActivity"/>
4749

4850
<activity
49-
android:name="com.mcal.disassembler.MenuActivity"
51+
android:name="com.mcal.disassembler.activities.MenuActivity"
5052
android:label="@string/menuActivity"/>
5153

5254
<activity
53-
android:name="com.mcal.disassembler.SearchActivity"
55+
android:name="com.mcal.disassembler.activities.SearchActivity"
5456
android:label="@string/searchActivity"/>
5557

5658
<activity
57-
android:name="com.mcal.disassembler.VtableActivity"
59+
android:name="com.mcal.disassembler.activities.VtableActivity"
5860
android:label="@string/vtableActivity"/>
5961

6062
<activity
61-
android:name="com.mcal.disassembler.NameDemanglerActivity"
63+
android:name="com.mcal.disassembler.activities.NameDemanglerActivity"
6264
android:label="@string/nameDemangler"/>
63-
65+
66+
<provider
67+
android:name="androidx.core.content.FileProvider"
68+
android:authorities="com.mcal.disassembler.fileprovider"
69+
android:exported="false"
70+
android:grantUriPermissions="true">
71+
<meta-data
72+
android:name="android.support.FILE_PROVIDER_PATHS"
73+
android:resource="@xml/filepaths" />
74+
</provider>
75+
6476
</application>
6577

6678
</manifest>

app/src/main/java/com/gc/materialdesign/views/AutoHideButtonFloat.java

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

0 commit comments

Comments
 (0)