mirror of
https://github.com/mollyim/mollyim-android.git
synced 2025-05-12 21:30:39 +01:00
26 lines
564 B
Groovy
26 lines
564 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
namespace 'info.guardianproject.netcipher'
|
|
|
|
buildToolsVersion = signalBuildToolsVersion
|
|
compileSdkVersion = signalCompileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdk = signalMinSdkVersion
|
|
targetSdk = signalTargetSdkVersion
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility signalJavaVersion
|
|
targetCompatibility signalJavaVersion
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core-util')
|
|
implementation libs.androidx.fragment
|
|
lintChecks project(':lintchecks')
|
|
}
|