-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbuild.gradle
More file actions
68 lines (58 loc) · 1.83 KB
/
build.gradle
File metadata and controls
68 lines (58 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 34
ndkVersion '24.0.8215888'
defaultConfig {
applicationId "com.mcal.disassembler"
minSdk 21
targetSdk 34
versionCode 35
versionName "3.5"
ndk {
abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
}
}
externalNativeBuild {
ndkBuild {
path 'src/main/jni/Android.mk'
}
}
buildTypes {
release {
multiDexEnabled true
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 17
targetCompatibility = 17
}
buildFeatures {
viewBinding true
}
lint {
baseline = file("lint-baseline.xml")
}
namespace 'com.mcal.disassembler'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.annotation:annotation:1.7.0'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation "androidx.core:core-ktx:1.12.0"
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.2"
implementation "com.mikepenz:fastadapter:5.7.0"
implementation "com.mikepenz:fastadapter-extensions-binding:5.7.0"
implementation 'com.simplecityapps:recyclerview-fastscroll:2.0.1'
implementation 'org.jetbrains:annotations:24.0.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
implementation 'com.google.android.material:material:1.10.0'
}