284 lines
11 KiB
Groovy
284 lines
11 KiB
Groovy
import com.android.build.api.dsl.ManagedVirtualDevice
|
|
|
|
plugins {
|
|
id "com.cookpad.android.plugin.license-tools" version "1.2.2"
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'jacoco'
|
|
|
|
// Force latest version of Jacoco, initially done to resolve https://github.com/jacoco/jacoco/issues/1155
|
|
jacoco.toolVersion = "0.8.7"
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 32
|
|
buildToolsVersion '31.0.0'
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
freeCompilerArgs += ["-opt-in=kotlin.RequiresOptIn"]
|
|
}
|
|
defaultConfig {
|
|
applicationId "org.pixeldroid.app"
|
|
minSdkVersion 23
|
|
targetSdkVersion 32
|
|
versionCode 16
|
|
versionName "1.0.beta" + versionCode
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
|
}
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/java'
|
|
test.java.srcDirs += 'src/test/java'
|
|
staging.res.srcDirs += 'src/debug/res'
|
|
androidTest.java.srcDirs += 'src/androidTest/java'
|
|
}
|
|
testBuildType "staging"
|
|
|
|
buildTypes {
|
|
staging {
|
|
initWith debug
|
|
testCoverageEnabled true
|
|
|
|
// These values are first looked for in the env variables, and, if not found there,
|
|
// in the local.properties file (which is not checked into version control of course!).
|
|
|
|
// If you are not running the integration tests, you can just set them to dummy values
|
|
// in local.properties or comment the buildConfigField lines
|
|
|
|
def localProperties = new Properties()
|
|
if (rootProject.file("local.properties").exists()) {
|
|
localProperties.load(new FileInputStream(rootProject.file("local.properties")))
|
|
}
|
|
|
|
buildConfigField "String", "USER_ID", System.getenv("USER_ID") ?: localProperties['USER_ID'] ?: '""'
|
|
buildConfigField "String", "INSTANCE_URI", System.getenv("INSTANCE_URI") ?: localProperties['INSTANCE_URI'] ?: '""'
|
|
buildConfigField "String", "ACCESS_TOKEN", System.getenv("ACCESS_TOKEN") ?: localProperties['ACCESS_TOKEN'] ?: '""'
|
|
buildConfigField "String", "REFRESH_TOKEN", System.getenv("REFRESH_TOKEN") ?: localProperties['REFRESH_TOKEN'] ?: '""'
|
|
buildConfigField "String", "CLIENT_ID", System.getenv("CLIENT_ID") ?: localProperties['CLIENT_ID'] ?: '""'
|
|
buildConfigField "String", "CLIENT_SECRET", System.getenv("CLIENT_SECRET") ?: localProperties['CLIENT_SECRET'] ?: '""'
|
|
}
|
|
debug {
|
|
applicationIdSuffix '.debug'
|
|
versionNameSuffix "-debug"
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles 'proguard-rules.pro'
|
|
}
|
|
}
|
|
/**
|
|
* Make a string with the application_id (available in xml etc)
|
|
*/
|
|
android.applicationVariants.all { variant ->
|
|
variant.resValue 'string', 'application_id', variant.applicationId
|
|
}
|
|
|
|
testOptions {
|
|
animationsDisabled true
|
|
managedDevices {
|
|
devices {
|
|
pixel2api30 (ManagedVirtualDevice) {
|
|
// Use device profiles you typically see in Android Studio.
|
|
device = "Pixel 2"
|
|
// Use only API levels 27 and higher.
|
|
apiLevel = 30
|
|
// To include Google services, use "google".
|
|
systemImageSource = "aosp-atd"
|
|
// Whether the image must be a 64 bit image. Defaults to false,
|
|
// in which case the managed device will use a 32 bit image.
|
|
// Not applicable to arm64 machines.
|
|
require64Bit = false
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
dataBinding = true
|
|
}
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
lint {
|
|
//We can't expect translators to always keep up immediately:
|
|
// don't fail if a a string is untranslated
|
|
disable 'MissingTranslation'
|
|
// This lint indicates a wrong translation:
|
|
// Remove this exception once https://github.com/WeblateOrg/weblate/issues/7520 is solved
|
|
disable 'MissingQuantity'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
/**
|
|
* AndroidX dependencies:
|
|
*/
|
|
implementation 'androidx.appcompat:appcompat:1.4.2'
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.0'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.5.0'
|
|
implementation "androidx.browser:browser:1.4.0"
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.0'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.5.0'
|
|
implementation 'androidx.paging:paging-runtime-ktx:3.1.1'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.0'
|
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.0"
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:2.5.0"
|
|
implementation "androidx.annotation:annotation:1.4.0"
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
|
implementation "androidx.activity:activity-ktx:1.5.0"
|
|
implementation 'androidx.fragment:fragment-ktx:1.5.0'
|
|
implementation 'androidx.work:work-runtime-ktx:2.7.1'
|
|
implementation 'androidx.media2:media2-widget:1.2.1'
|
|
implementation 'androidx.media2:media2-player:1.2.1'
|
|
|
|
|
|
// Use the most recent version of CameraX
|
|
def cameraX_version = '1.1.0'
|
|
implementation "androidx.camera:camera-core:$cameraX_version"
|
|
implementation "androidx.camera:camera-camera2:$cameraX_version"
|
|
// CameraX Lifecycle library
|
|
implementation "androidx.camera:camera-lifecycle:$cameraX_version"
|
|
|
|
// CameraX View class
|
|
implementation "androidx.camera:camera-view:$cameraX_version"
|
|
|
|
def room_version = "2.4.2"
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
implementation "androidx.room:room-paging:$room_version"
|
|
|
|
/**
|
|
* End of AndroidX section
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
implementation 'com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0'
|
|
implementation 'com.arthenica:ffmpeg-kit-min:4.5.1-1.LTS'
|
|
|
|
implementation 'com.google.android.material:material:1.6.1'
|
|
|
|
//Dagger (dependency injection)
|
|
implementation 'com.google.dagger:dagger-android:2.42'
|
|
implementation 'com.google.dagger:dagger-android-support:2.42'
|
|
// if you use the support libraries
|
|
kapt 'com.google.dagger:dagger-android-processor:2.42'
|
|
kapt 'com.google.dagger:dagger-compiler:2.42'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava3:2.9.0'
|
|
implementation 'io.reactivex.rxjava3:rxjava:3.1.5'
|
|
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
|
|
implementation 'com.github.connyduck:sparkbutton:4.1.0'
|
|
|
|
|
|
implementation 'info.androidhive:imagefilters:1.0.7'
|
|
implementation 'com.github.yalantis:ucrop:2.2.8-native'
|
|
|
|
implementation('com.github.bumptech.glide:glide:4.13.2') {
|
|
exclude group: "com.android.support"
|
|
}
|
|
|
|
implementation 'com.github.bumptech.glide:okhttp-integration:4.13.2'
|
|
implementation('com.github.bumptech.glide:recyclerview-integration:4.13.2') {
|
|
// Excludes the support library because it's already included by Glide.
|
|
transitive = false
|
|
}
|
|
kapt 'com.github.bumptech.glide:compiler:4.13.2'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'com.mikepenz:materialdrawer:9.0.1'
|
|
// Add for NavController support
|
|
implementation 'com.mikepenz:materialdrawer-nav:9.0.1'
|
|
|
|
//iconics
|
|
implementation 'com.mikepenz:iconics-core:5.3.4'
|
|
implementation 'com.mikepenz:materialdrawer-iconics:9.0.1'
|
|
implementation 'com.mikepenz:iconics-views:5.3.4'
|
|
implementation 'com.mikepenz:google-material-typeface:4.0.0.2-kotlin@aar'
|
|
|
|
|
|
implementation 'com.karumi:dexter:6.2.3'
|
|
|
|
implementation 'com.github.ligi:tracedroid:4.1'
|
|
|
|
implementation 'me.relex:circleindicator:2.1.6'
|
|
|
|
/**
|
|
* Not in release, so not mentioned in licenses list
|
|
*/
|
|
|
|
//stagingImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
|
|
|
|
androidTestImplementation 'androidx.work:work-testing:2.7.1'
|
|
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.33.2'
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation "androidx.room:room-testing:$room_version"
|
|
|
|
|
|
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
|
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.4.0'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
|
|
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.2'
|
|
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
jacoco.includeNoLocationClasses = true
|
|
jacoco.excludes = ['jdk.internal.*']
|
|
}
|
|
|
|
|
|
task jacocoTestReport(type: JacocoReport, dependsOn: ['connectedStagingAndroidTest', 'testStagingUnitTest', 'createStagingCoverageReport']) {
|
|
|
|
reports {
|
|
xml.enabled = true
|
|
html.enabled = true
|
|
}
|
|
|
|
def fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', '**/*Test*.*', 'android/**/*.*']
|
|
def kotlinTree = fileTree(dir: "$project.buildDir/tmp/kotlin-classes/staging", excludes: fileFilter)
|
|
def mainSrc = "$project.projectDir/src/main/java"
|
|
getSourceDirectories().from(files([mainSrc]))
|
|
getClassDirectories().from(files([kotlinTree]))
|
|
getExecutionData().from(fileTree(dir: project.buildDir, includes: [
|
|
|
|
'outputs/code_coverage/stagingAndroidTest/connected/*coverage.ec',
|
|
|
|
'jacoco/testStagingUnitTest.exec'
|
|
|
|
]))
|
|
}
|