4 changed files with 44 additions and 44 deletions
@ -1,39 +1,39 @@ |
|||||
plugins{ |
plugins { |
||||
id "com.android.application" |
id("com.android.application") |
||||
id "kotlin-android" |
id("kotlin-android") |
||||
} |
} |
||||
|
|
||||
android { |
android { |
||||
compileSdkVersion 28 |
compileSdkVersion = 28 |
||||
defaultConfig { |
defaultConfig { |
||||
applicationId "com.wuliang.xapkinstaller" |
applicationId = "com.wuliang.xapkinstaller" |
||||
minSdkVersion 14 |
minSdkVersion = 14 |
||||
targetSdkVersion 28 |
targetSdkVersion = 28 |
||||
versionCode 1 |
versionCode = 1 |
||||
versionName "1.0" |
versionName = "1.0" |
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" |
||||
} |
} |
||||
buildTypes { |
buildTypes { |
||||
release { |
release { |
||||
minifyEnabled false |
minifyEnabled = false |
||||
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" |
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") |
||||
} |
} |
||||
} |
} |
||||
compileOptions { |
compileOptions { |
||||
sourceCompatibility = JavaVersion.VERSION_1_8 |
sourceCompatibility = JavaVersion.VERSION_1_8 |
||||
targetCompatibility JavaVersion.VERSION_1_8 |
targetCompatibility = JavaVersion.VERSION_1_8 |
||||
} |
} |
||||
buildToolsVersion = "28.0.3" |
buildToolsVersion = "28.0.3" |
||||
} |
} |
||||
|
|
||||
dependencies { |
dependencies { |
||||
implementation fileTree(dir: "libs", include: ["*.jar"]) |
implementation(fileTree(dir: "libs", include: ["*.jar"])) |
||||
|
|
||||
implementation "androidx.appcompat:appcompat:$rootProject.ext.appcompat_version" |
implementation("androidx.appcompat:appcompat:$rootProject.ext.appcompat_version") |
||||
|
|
||||
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version") |
||||
testImplementation "junit:junit:4.12" |
testImplementation("junit:junit:4.12") |
||||
implementation project(path: ":lib") |
implementation(project(path: ":lib")) |
||||
|
|
||||
implementation "com.liulishuo.okdownload:okdownload:1.0.7" |
implementation("com.liulishuo.okdownload:okdownload:1.0.7") |
||||
} |
} |
||||
|
|||||
@ -1,2 +1,2 @@ |
|||||
include ":app", ":lib" |
include(":app", ":lib") |
||||
rootProject.name="XAPK Installer" |
rootProject.name="XAPK Installer" |
||||
|
|||||
Loading…
Reference in new issue