保留应用签名与WinBoLL主机信息配置,更新编译配置文件

This commit is contained in:
2026-03-15 15:01:42 +08:00
parent 2f40df91e5
commit 11a5cc020e
7 changed files with 675 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply from: 'localandwinboll-maven-publish.gradle'
android {
compileSdkVersion project.properties.compileSdkVersion.toInteger()
@@ -37,17 +38,17 @@ task sourceJar(type: Jar) {
classifier "sources"
}
afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.release
groupId = 'com.termux'
artifactId = 'terminal-view'
version = '0.118.0'
artifact(sourceJar)
}
}
}
}
//afterEvaluate {
// publishing {
// publications {
// // Creates a Maven publication called "release".
// release(MavenPublication) {
// from components.release
// groupId = 'com.termux'
// artifactId = 'terminal-view'
// version = '0.118.0'
// artifact(sourceJar)
// }
// }
// }
//}