2021-03-03 16:03:49 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
buildToolsVersion BUILD_TOOL_VERSION
|
|
|
|
compileSdkVersion COMPILE_SDK
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.signal.devicetransfer.app"
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
minSdkVersion MINIMUM_SDK
|
|
|
|
targetSdkVersion TARGET_SDK
|
2022-06-17 10:54:03 -07:00
|
|
|
|
|
|
|
ndk {
|
|
|
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildConfigField "String", "LIBSIGNAL_VERSION", "\"libsignal ${libs.versions.libsignal.client.get()}\""
|
2021-03-03 16:03:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JAVA_VERSION
|
|
|
|
targetCompatibility JAVA_VERSION
|
|
|
|
}
|
2021-03-11 13:16:51 -05:00
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
|
|
'proguard/proguard.cfg'
|
|
|
|
}
|
|
|
|
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
|
|
'proguard/proguard.cfg'
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 16:03:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-14 14:57:04 -03:00
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
implementation libs.material.material
|
|
|
|
implementation libs.androidx.constraintlayout
|
2021-03-03 16:03:49 -05:00
|
|
|
|
2021-09-14 14:57:04 -03:00
|
|
|
testImplementation testLibs.junit.junit
|
2021-03-03 16:03:49 -05:00
|
|
|
|
|
|
|
implementation project(':device-transfer')
|
|
|
|
}
|