rele-1.0(1)
This commit is contained in:
parent
5396a2c41f
commit
dbd9790c6f
12
.idea/deploymentTargetDropDown.xml
generated
12
.idea/deploymentTargetDropDown.xml
generated
@ -4,18 +4,18 @@
|
||||
<value>
|
||||
<entry key="app">
|
||||
<State>
|
||||
<targetSelectedWithDropDown>
|
||||
<runningDeviceTargetSelectedWithDropDown>
|
||||
<Target>
|
||||
<type value="QUICK_BOOT_TARGET" />
|
||||
<type value="RUNNING_DEVICE_TARGET" />
|
||||
<deviceKey>
|
||||
<Key>
|
||||
<type value="VIRTUAL_DEVICE_PATH" />
|
||||
<value value="C:\Users\timbe\.android\avd\Pixel_8_API_34.avd" />
|
||||
<type value="SERIAL_NUMBER" />
|
||||
<value value="ZX1G22HXL8" />
|
||||
</Key>
|
||||
</deviceKey>
|
||||
</Target>
|
||||
</targetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2024-04-08T02:01:13.600126200Z" />
|
||||
</runningDeviceTargetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2024-04-08T07:41:20.712890Z" />
|
||||
</State>
|
||||
</entry>
|
||||
</value>
|
||||
|
||||
@ -4,11 +4,21 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
// signingConfigs {
|
||||
// debug {
|
||||
// storeFile file('D:\\Android_Files\\NewKeyboard\\info\\key0.jks')
|
||||
// storePassword 'kb123456'
|
||||
// keyPassword 'kb123456'
|
||||
// keyAlias 'kb_key0'
|
||||
// }
|
||||
// }
|
||||
|
||||
namespace 'com.timber.soft.newkeyboard'
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.timber.soft.newkeyboard"
|
||||
applicationId "com.theme.keyboard.fancy"
|
||||
minSdk 22
|
||||
targetSdk 34
|
||||
versionCode 1
|
||||
@ -22,6 +32,10 @@ android {
|
||||
minifyEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
// debug {
|
||||
// minifyEnabled true
|
||||
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
// }
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
|
||||
10
app/proguard-rules.pro
vendored
10
app/proguard-rules.pro
vendored
@ -20,3 +20,13 @@
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-keepattributes Signature
|
||||
-keepattributes *Annotation*
|
||||
-keep class com.google.gson.stream.** { *; }
|
||||
-keep class com.google.gson.examples.android.model.** { *; }
|
||||
-keep class * implements com.google.gson.TypeAdapter { *; }
|
||||
-keep class com.google.gson.internal.LinkedTreeMap { *; }
|
||||
-keep class com.timber.soft.newkeyboard.tools.** { *; }
|
||||
|
||||
-keep class com.omicronapplications.** { *; }
|
||||
-keep class net.sf.sevenzipjbinding.** { *; }
|
||||
@ -9,9 +9,9 @@
|
||||
android:allowBackup="true"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:icon="@mipmap/png_logo_icon"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:roundIcon="@mipmap/png_logo_icon"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.NewKeyboard"
|
||||
tools:targetApi="31">
|
||||
|
||||
@ -60,6 +60,7 @@ class MainActivity : AppCompatActivity() {
|
||||
(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or View.SYSTEM_UI_FLAG_LAYOUT_STABLE) or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
|
||||
window.statusBarColor = Color.TRANSPARENT
|
||||
}
|
||||
|
||||
initDrawer()
|
||||
initTabLayOut()
|
||||
binding.viewpager.offscreenPageLimit = 3
|
||||
|
||||
@ -159,7 +159,6 @@ class MyKeyboardView @JvmOverloads constructor(
|
||||
)?.let { drawBG ->
|
||||
icDel = getStatus(drawBG, drawBG)
|
||||
|
||||
|
||||
}
|
||||
getbgic(con, it.plus(AppVal.parent_path).plus(AppVal.title_shitf_ic_lock))?.let {
|
||||
icShittLock = it
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 6.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 7.4 KiB |
@ -81,7 +81,7 @@
|
||||
<ImageView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:src="@mipmap/ic_launcher" />
|
||||
android:src="@mipmap/png_logo_icon" />
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
||||
<!--AppName-->
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<resources>
|
||||
<string name="app_name">NewKeyboard</string>
|
||||
<string name="app_name">Fancy Keyboard Theme</string>
|
||||
<string name="main_menu_share">Share our Apps</string>
|
||||
<string name="main_menu_rate">Find us in store</string>
|
||||
<string name="main_menu_set">Setting</string>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user