mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-01-13 10:23: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
|
||
|
}
|
||
|
}
|
||
|
|