mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-25 15:37:38 +00:00
21 lines
331 B
Groovy
21 lines
331 B
Groovy
apply plugin: 'com.android.library'
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.3'
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 24
|
|
}
|
|
}
|
|
|