Skip to content

Commit

Permalink
release: androidx-8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SherlockGougou committed Nov 27, 2024
1 parent 841e30c commit 5cd4766
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 3 deletions.
Binary file added common-60.keystore
Binary file not shown.
2 changes: 2 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ apply plugin: 'kotlin-android'
android {
namespace 'cc.shinichi.library'
compileSdkVersion 34
buildToolsVersion '34.0.0'
defaultConfig {
minSdkVersion 24
targetSdkVersion 34
multiDexEnabled true
}
buildTypes {
release {
Expand Down
4 changes: 4 additions & 0 deletions library/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# Please add these rules to your existing keep rules in order to suppress warnings.
# This is generated automatically by the Android Gradle plugin.
-dontwarn java.lang.invoke.StringConcatFactory
20 changes: 18 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,36 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
signingConfigs {
debug {
storeFile file('../common-60.keystore')
storePassword '000000'
keyAlias '000000'
keyPassword '000000'
}
release {
storeFile file('../common-60.keystore')
storePassword '000000'
keyAlias '000000'
keyPassword '000000'
}
}
namespace 'cc.shinichi.bigimageviewpager'
compileSdkVersion 34
buildToolsVersion '34.0.0'
defaultConfig {
applicationId "cc.shinichi.bigimageviewpager"
minSdkVersion 24
targetSdkVersion 34
versionCode 800
versionName "androidx-8.0.0"
signingConfig signingConfigs.debug
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
}
compileOptions {
Expand Down
7 changes: 6 additions & 1 deletion sample/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@

# This is generated automatically by the Android Gradle plugin.
-dontwarn org.conscrypt.Conscrypt
-dontwarn org.conscrypt.OpenSSLProvider
-dontwarn org.conscrypt.OpenSSLProvider

# 配置
-keep class cc.shinichi.library.** { *; }
-keep interface cc.shinichi.library.** { *; }
-dontwarn cc.shinichi.library.**

0 comments on commit 5cd4766

Please sign in to comment.