6.6.2 - Alpha - 整合 ApkSigner 库源代码到本地

This commit is contained in:
SuperMonster003
2025-01-02 22:17:06 +08:00
parent cf155aca06
commit c0f36c840a
139 changed files with 30729 additions and 12 deletions

51
apksigner/build.gradle Normal file
View File

@@ -0,0 +1,51 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
namespace = 'com.mcal.apksigner'
compileSdk = project.ext.compileSdk
defaultConfig {
minSdk = project.ext.minSdk
targetSdk = project.ext.targetSdk
versionName '1.1-template'
versionCode 11
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
compileOptions {
sourceCompatibility = JavaVersion.toVersion(project.ext.javaVersion)
targetCompatibility = JavaVersion.toVersion(project.ext.javaVersion)
}
kotlinOptions {
jvmTarget = project.ext.javaVersion
}
sourceSets {
main {
java.srcDirs = ['src/main/java']
}
}
}
repositories {
mavenCentral()
google()
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation("com.madgag.spongycastle:core:1.58.0.0")
implementation("com.madgag.spongycastle:prov:1.58.0.0")
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}