2020-07-01 17:08:28 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2020-08-17 13:49:51 +00:00
|
|
|
apply plugin: "androidx.navigation.safeargs"
|
2021-03-21 13:50:23 +00:00
|
|
|
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 {
|
2020-11-07 16:55:44 +00:00
|
|
|
applicationId 'me.austinhuang.instagrabber'
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2020-09-21 12:02:18 +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()]
|
|
|
|
}
|
|
|
|
}
|
2021-04-13 15:17:23 +00:00
|
|
|
|
|
|
|
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 {
|
2020-12-05 20:17:46 +00:00
|
|
|
debug {
|
2021-03-15 02:49:17 +00:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2020-12-05 20:17:46 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 17:08:28 +00:00
|
|
|
release {
|
2020-12-05 20:17:46 +00:00
|
|
|
minifyEnabled true
|
2020-07-01 17:08:28 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 13:50:23 +00:00
|
|
|
flavorDimensions "repo"
|
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
github {
|
|
|
|
dimension "repo"
|
2021-03-26 15:40:08 +00:00
|
|
|
// versionNameSuffix "-github" // appended in assemble task
|
2021-03-21 13:50:23 +00:00
|
|
|
buildConfigField("String", "dsn", SENTRY_DSN)
|
2021-03-28 14:32:27 +00:00
|
|
|
buildConfigField("boolean", "isPre", "false")
|
2021-03-21 13:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fdroid {
|
|
|
|
dimension "repo"
|
|
|
|
versionNameSuffix "-fdroid"
|
2021-03-28 14:32:27 +00:00
|
|
|
buildConfigField("boolean", "isPre", "false")
|
2021-03-21 13:50:23 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-26 13:30:55 +00:00
|
|
|
|
|
|
|
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")) {
|
2021-03-28 14:32:27 +00:00
|
|
|
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"
|
2021-03-26 13:30:55 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-13 15:17:23 +00:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
// Exclude file to avoid
|
|
|
|
// Error: Duplicate files during packaging of APK
|
|
|
|
exclude 'META-INF/LICENSE.md'
|
|
|
|
exclude 'META-INF/LICENSE-notice.md'
|
|
|
|
}
|
2021-03-21 13:50:23 +00:00
|
|
|
}
|
2020-10-24 09:10:21 +00:00
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:08:28 +00:00
|
|
|
dependencies {
|
2021-02-27 16:13:47 +00:00
|
|
|
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"
|
2021-05-07 11:56:44 +00:00
|
|
|
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
|
|
|
|
2021-03-31 17:37:25 +00:00
|
|
|
implementation 'com.google.android.material:material:1.4.0-alpha02'
|
2020-11-05 18:34:01 +00:00
|
|
|
|
2021-01-06 03:10:54 +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"
|
2021-05-07 11:56:44 +00:00
|
|
|
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"
|
2020-08-17 13:49:51 +00:00
|
|
|
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"
|
2021-02-27 16:13:47 +00:00
|
|
|
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
|
|
|
|
2021-03-21 13:50:23 +00:00
|
|
|
implementation 'com.google.guava:guava:27.0.1-android'
|
2020-08-30 06:47:04 +00:00
|
|
|
|
2020-12-05 20:17:46 +00:00
|
|
|
// Room
|
2021-01-02 02:54:32 +00:00
|
|
|
def room_version = "2.2.6"
|
2020-12-05 20:17:46 +00:00
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
implementation "androidx.room:room-guava:$room_version"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
|
|
|
2021-01-02 02:54:32 +00:00
|
|
|
// CameraX
|
2021-04-26 22:12:56 +00:00
|
|
|
def camerax_version = "1.1.0-alpha04"
|
2021-01-02 02:54:32 +00:00
|
|
|
implementation "androidx.camera:camera-camera2:$camerax_version"
|
|
|
|
implementation "androidx.camera:camera-lifecycle:$camerax_version"
|
2021-04-21 18:58:06 +00:00
|
|
|
implementation "androidx.camera:camera-view:1.0.0-alpha24"
|
2021-01-02 02:54:32 +00:00
|
|
|
|
|
|
|
// 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-17 13:49:51 +00:00
|
|
|
|
2020-08-29 08:01:42 +00:00
|
|
|
implementation 'com.facebook.fresco:fresco:2.3.0'
|
2020-11-10 13:41:22 +00:00
|
|
|
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'
|
2020-08-30 06:47:04 +00:00
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
2020-09-11 16:56:15 +00:00
|
|
|
|
2020-11-10 12:43:53 +00:00
|
|
|
implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
|
2021-04-25 11:58:02 +00:00
|
|
|
|
2021-05-08 11:22:26 +00:00
|
|
|
implementation 'com.github.skydoves:balloon:1.3.4'
|
|
|
|
|
2021-04-25 11:58:02 +00:00
|
|
|
implementation 'com.github.ammargitham:AutoLinkTextViewV2:v3.1.0'
|
2021-01-02 02:54:32 +00:00
|
|
|
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
|
|
|
|
2021-03-26 19:19:16 +00:00
|
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
|
2020-10-17 10:07:03 +00:00
|
|
|
|
2021-03-21 13:50:23 +00:00
|
|
|
githubImplementation 'io.sentry:sentry-android:4.3.0'
|
2021-03-26 15:40:08 +00:00
|
|
|
|
2021-03-20 22:22:12 +00:00
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
|
2021-04-13 15:17:23 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|