barinsta/app/build.gradle

68 lines
2.1 KiB
Groovy
Raw Normal View History

2020-07-01 19:08:28 +02:00
apply plugin: 'com.android.application'
apply plugin: "androidx.navigation.safeargs"
2020-07-01 19:08:28 +02:00
android {
compileSdkVersion 29
defaultConfig {
2020-09-07 19:08:28 +02:00
applicationId 'me.austinhuang.instagrabbr'
2020-07-01 19:08:28 +02:00
minSdkVersion 21
2020-07-01 19:08:28 +02:00
targetSdkVersion 29
2020-09-20 05:34:09 +02:00
versionCode 51
versionName '19.0-a2'
2020-07-01 19:08:28 +02:00
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
vectorDrawables.generatedDensities = []
}
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
buildFeatures { viewBinding true }
aaptOptions { additionalParameters '--no-version-vectors' }
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2020-08-29 10:01:42 +02:00
def appcompat_version = "1.2.0"
def nav_version = "2.3.0"
def preference_version = "1.1.1"
2020-08-29 10:01:42 +02:00
implementation 'com.google.android.material:material:1.3.0-alpha02'
2020-09-12 08:35:10 +02:00
implementation 'com.google.android.exoplayer:exoplayer:2.11.1'
2020-08-29 10:01:42 +02:00
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation "androidx.viewpager2:viewpager2:1.0.0"
implementation "androidx.navigation:navigation-fragment:$nav_version"
implementation "androidx.navigation:navigation-ui:$nav_version"
2020-09-11 18:44:34 +02:00
implementation "androidx.constraintlayout:constraintlayout:2.0.1"
implementation "androidx.preference:preference:$preference_version"
// implementation 'com.github.hendrawd:StorageUtil:1.1.0'
2020-08-29 10:01:42 +02:00
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'com.facebook.fresco:fresco:2.3.0'
2020-07-01 19:08:28 +02:00
2020-08-29 10:01:42 +02:00
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.4'
2020-07-01 19:08:28 +02:00
}