31 lines
737 B
Groovy
31 lines
737 B
Groovy
|
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
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JAVA_VERSION
|
||
|
targetCompatibility JAVA_VERSION
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||
|
implementation 'com.google.android.material:material:1.2.1'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||
|
|
||
|
testImplementation 'junit:junit:4.12'
|
||
|
|
||
|
implementation project(':device-transfer')
|
||
|
}
|