BarInsta/app/build.gradle

189 lines
6.4 KiB
Groovy
Raw Normal View History

2020-07-01 17:08:28 +00:00
apply plugin: 'com.android.application'
apply plugin: "androidx.navigation.safeargs"
apply from: 'sentry.gradle'
2020-07-01 17:08:28 +00:00
2021-03-26 15:40:08 +00:00
def getGitHash = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--short', 'HEAD'
standardOutput = stdout
}
return stdout.toString().trim()
}
2020-07-01 17:08:28 +00:00
android {
compileSdkVersion 29
defaultConfig {
applicationId 'me.austinhuang.instagrabber'
2020-07-01 17:08:28 +00:00
minSdkVersion 21
2020-07-01 17:08:28 +00:00
targetSdkVersion 29
2021-04-11 14:11:40 +00:00
versionCode 62
versionName '19.2.1'
2020-07-01 17:08:28 +00:00
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
vectorDrawables.generatedDensities = []
2020-12-08 11:15:52 +00:00
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
2020-07-01 17:08:28 +00:00
}
compileOptions {
2020-10-17 10:07:03 +00:00
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
2020-07-01 17:08:28 +00:00
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
buildFeatures { viewBinding true }
aaptOptions { additionalParameters '--no-version-vectors' }
buildTypes {
debug {
2021-03-15 02:49:17 +00:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
2020-07-01 17:08:28 +00:00
release {
minifyEnabled true
2020-07-01 17:08:28 +00:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
flavorDimensions "repo"
productFlavors {
github {
dimension "repo"
2021-03-26 15:40:08 +00:00
// versionNameSuffix "-github" // appended in assemble task
buildConfigField("String", "dsn", SENTRY_DSN)
buildConfigField("boolean", "isPre", "false")
}
fdroid {
dimension "repo"
versionNameSuffix "-fdroid"
buildConfigField("boolean", "isPre", "false")
}
}
android.applicationVariants.all { variant ->
if (variant.flavorName != "github") return
variant.outputs.all { output ->
def builtType = variant.buildType.name
def versionName = variant.versionName
// def versionCode = variant.versionCode
2021-03-26 15:40:08 +00:00
def flavor = variant.flavorName
def suffix = "${versionName}-${flavor}_${builtType}" // eg. 19.1.0-github_debug or release
if (builtType.toString() == 'release' && project.hasProperty("pre")) {
buildConfigField("boolean", "isPre", "true")
2021-03-26 15:40:08 +00:00
// append latest commit short hash for pre-release
suffix = "${versionName}.${getGitHash()}-${flavor}" // eg. 19.1.0.b123456-github
}
output.versionNameOverride = suffix
outputFileName = "barinsta_${suffix}.apk"
}
}
packagingOptions {
// Exclude file to avoid
// Error: Duplicate files during packaging of APK
exclude 'META-INF/LICENSE.md'
exclude 'META-INF/LICENSE-notice.md'
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
2020-07-01 17:08:28 +00:00
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
2020-10-17 10:07:03 +00:00
2020-08-29 08:01:42 +00:00
def appcompat_version = "1.2.0"
def nav_version = '2.3.5'
2021-04-17 20:24:21 +00:00
def exoplayer_version = '2.13.3'
2020-08-29 08:01:42 +00:00
implementation 'com.google.android.material:material:1.4.0-alpha02'
2020-11-05 18:34:01 +00:00
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version"
implementation "com.google.android.exoplayer:exoplayer-dash:$exoplayer_version"
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version"
2020-09-12 06:35:10 +00:00
2020-08-29 08:01:42 +00:00
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
implementation "androidx.recyclerview:recyclerview:1.2.0"
2020-08-29 08:01:42 +00:00
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-11-01 06:02:54 +00:00
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
2020-10-17 10:07:03 +00:00
implementation "androidx.preference:preference:1.1.1"
implementation "androidx.work:work-runtime:2.5.0"
2020-11-01 06:02:54 +00:00
implementation 'androidx.palette:palette:1.0.0'
2021-03-13 15:21:31 +00:00
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
2020-10-17 10:07:03 +00:00
implementation 'com.google.guava:guava:27.0.1-android'
// Room
def room_version = "2.2.6"
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-guava:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
// CameraX
def camerax_version = "1.1.0-alpha04"
implementation "androidx.camera:camera-camera2:$camerax_version"
implementation "androidx.camera:camera-lifecycle:$camerax_version"
implementation "androidx.camera:camera-view:1.0.0-alpha24"
// EmojiCompat
def emoji_compat_version = "1.1.0"
implementation "androidx.emoji:emoji:$emoji_compat_version"
implementation "androidx.emoji:emoji-appcompat:$emoji_compat_version"
2020-08-29 08:01:42 +00:00
implementation 'com.facebook.fresco:fresco:2.3.0'
implementation 'com.facebook.fresco:animated-webp:2.3.0'
implementation 'com.facebook.fresco:webpsupport:2.3.0'
2020-07-01 17:08:28 +00:00
2020-08-29 08:01:42 +00: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'
implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
implementation 'com.github.ammargitham:AutoLinkTextViewV2:v3.1.0'
implementation 'com.github.ammargitham:uCrop:2.3-native-beta-2'
implementation 'com.github.ammargitham:android-gpuimage:2.1.1-beta4'
2020-11-05 18:34:01 +00:00
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
2020-10-17 10:07:03 +00:00
githubImplementation 'io.sentry:sentry-android:4.3.0'
2021-03-26 15:40:08 +00:00
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
androidTestImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
androidTestImplementation 'androidx.test:core:1.3.0'
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation "androidx.room:room-testing:2.2.6"
2020-07-01 17:08:28 +00:00
}