mirror of
https://github.com/gkd-kit/gkd.git
synced 2024-11-15 19:22:26 +08:00
update: jks
This commit is contained in:
parent
64e6169321
commit
7ee6497f30
3
app/.gitignore
vendored
3
app/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
/build
|
||||
/build
|
||||
/release
|
||||
|
|
BIN
app/android.jks
Normal file
BIN
app/android.jks
Normal file
Binary file not shown.
|
@ -19,11 +19,23 @@ android {
|
|||
useSupportLibrary true
|
||||
}
|
||||
}
|
||||
signingConfigs{
|
||||
release{
|
||||
storeFile file("./android.jks")
|
||||
storePassword "KdMQ6pqiNSJ6Sype"
|
||||
keyAlias "key0"
|
||||
keyPassword "KdMQ6pqiNSJ6Sype"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
debug{
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
|
@ -50,7 +62,7 @@ android {
|
|||
dependencies {
|
||||
|
||||
implementation "androidx.core:core-ktx:1.7.0"
|
||||
implementation "androidx.appcompat:appcompat:1.3.1"
|
||||
implementation "androidx.appcompat:appcompat:1.4.0"
|
||||
implementation "com.google.android.material:material:1.4.0"
|
||||
implementation "androidx.compose.ui:ui:$compose_version"
|
||||
implementation "androidx.compose.material:material:$compose_version"
|
||||
|
|
|
@ -161,7 +161,15 @@ class AdCloserService : AccessibilityService() {
|
|||
|
||||
override fun onInterrupt() {
|
||||
scope.cancel()
|
||||
// val invok = {a: Int, b: Int->a+b}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
//typealias Test = (a: Int, b: Int) -> Int
|
||||
//typealias Test = (a: Int, ) -> Int
|
||||
|
||||
//fun invok(a: Int, b: Int = 0){
|
||||
//
|
||||
//}
|
Loading…
Reference in New Issue
Block a user