mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-04 22:27:28 +00:00
40e810e88c
1. Added preferences screens. 2. Some DM changes. 3. Init profile actions using services
69 lines
2.3 KiB
Groovy
Executable File
69 lines
2.3 KiB
Groovy
Executable File
apply plugin: 'com.android.application'
|
|
apply plugin: "androidx.navigation.safeargs"
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
applicationId 'me.austinhuang.instagrabber'
|
|
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
|
|
versionCode 47
|
|
versionName '18.1'
|
|
|
|
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 {
|
|
def appcompat_version = "1.2.0"
|
|
def nav_version = "2.3.0"
|
|
def preference_version = "1.1.1"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
// For loading and tinting drawables on older versions of the platform
|
|
implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
|
|
implementation 'com.google.android.material:material:1.2.0'
|
|
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"
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.0"
|
|
implementation "androidx.preference:preference:$preference_version"
|
|
|
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation 'com.github.chrisbanes:PhotoView:v2.0.0'
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.11.1'
|
|
implementation 'com.facebook.fresco:fresco:2.3.0'
|
|
|
|
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'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
|
}
|