|
|
@ -32,8 +32,13 @@ android { |
|
|
|
aaptOptions { additionalParameters '--no-version-vectors' } |
|
|
|
|
|
|
|
buildTypes { |
|
|
|
debug { |
|
|
|
minifyEnabled true |
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
|
|
|
} |
|
|
|
|
|
|
|
release { |
|
|
|
minifyEnabled false |
|
|
|
minifyEnabled true |
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
|
|
|
} |
|
|
|
} |
|
|
@ -45,19 +50,19 @@ configurations.all { |
|
|
|
} |
|
|
|
|
|
|
|
dependencies { |
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.0' |
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1' |
|
|
|
|
|
|
|
def appcompat_version = "1.2.0" |
|
|
|
def nav_version = '2.3.1' |
|
|
|
def nav_version = '2.3.2' |
|
|
|
|
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha03' |
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha04' |
|
|
|
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.12.0' |
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-ui:2.12.0' |
|
|
|
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version" |
|
|
|
implementation "androidx.appcompat:appcompat-resources:$appcompat_version" |
|
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha06" |
|
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-beta01" |
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' |
|
|
|
implementation "androidx.viewpager2:viewpager2:1.0.0" |
|
|
|
implementation "androidx.navigation:navigation-fragment:$nav_version" |
|
|
@ -69,6 +74,12 @@ dependencies { |
|
|
|
|
|
|
|
implementation 'com.google.guava:guava:27.0.1-android' |
|
|
|
|
|
|
|
// Room |
|
|
|
def room_version = "2.2.5" |
|
|
|
implementation "androidx.room:room-runtime:$room_version" |
|
|
|
implementation "androidx.room:room-guava:$room_version" |
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version" |
|
|
|
|
|
|
|
// implementation 'com.github.hendrawd:StorageUtil:1.1.0' |
|
|
|
implementation 'com.github.ammargitham:AutoLinkTextViewV2:master-SNAPSHOT' |
|
|
|
|
|
|
|