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>
|
<value>
|
||||||
<entry key="app">
|
<entry key="app">
|
||||||
<State>
|
<State>
|
||||||
<targetSelectedWithDropDown>
|
<runningDeviceTargetSelectedWithDropDown>
|
||||||
<Target>
|
<Target>
|
||||||
<type value="QUICK_BOOT_TARGET" />
|
<type value="RUNNING_DEVICE_TARGET" />
|
||||||
<deviceKey>
|
<deviceKey>
|
||||||
<Key>
|
<Key>
|
||||||
<type value="VIRTUAL_DEVICE_PATH" />
|
<type value="SERIAL_NUMBER" />
|
||||||
<value value="C:\Users\timbe\.android\avd\Pixel_8_API_34.avd" />
|
<value value="ZX1G22HXL8" />
|
||||||
</Key>
|
</Key>
|
||||||
</deviceKey>
|
</deviceKey>
|
||||||
</Target>
|
</Target>
|
||||||
</targetSelectedWithDropDown>
|
</runningDeviceTargetSelectedWithDropDown>
|
||||||
<timeTargetWasSelectedWithDropDown value="2024-04-08T02:01:13.600126200Z" />
|
<timeTargetWasSelectedWithDropDown value="2024-04-08T07:41:20.712890Z" />
|
||||||
</State>
|
</State>
|
||||||
</entry>
|
</entry>
|
||||||
</value>
|
</value>
|
||||||
|
|||||||
@ -4,11 +4,21 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
|
// signingConfigs {
|
||||||
|
// debug {
|
||||||
|
// storeFile file('D:\\Android_Files\\NewKeyboard\\info\\key0.jks')
|
||||||
|
// storePassword 'kb123456'
|
||||||
|
// keyPassword 'kb123456'
|
||||||
|
// keyAlias 'kb_key0'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
namespace 'com.timber.soft.newkeyboard'
|
namespace 'com.timber.soft.newkeyboard'
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "com.timber.soft.newkeyboard"
|
applicationId "com.theme.keyboard.fancy"
|
||||||
minSdk 22
|
minSdk 22
|
||||||
targetSdk 34
|
targetSdk 34
|
||||||
versionCode 1
|
versionCode 1
|
||||||
@ -22,6 +32,10 @@ android {
|
|||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
// debug {
|
||||||
|
// minifyEnabled true
|
||||||
|
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
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.
|
# hide the original source file name.
|
||||||
#-renamesourcefileattribute SourceFile
|
#-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:allowBackup="true"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
android:fullBackupContent="@xml/backup_rules"
|
android:fullBackupContent="@xml/backup_rules"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/png_logo_icon"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/png_logo_icon"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.NewKeyboard"
|
android:theme="@style/Theme.NewKeyboard"
|
||||||
tools:targetApi="31">
|
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
|
(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
|
window.statusBarColor = Color.TRANSPARENT
|
||||||
}
|
}
|
||||||
|
|
||||||
initDrawer()
|
initDrawer()
|
||||||
initTabLayOut()
|
initTabLayOut()
|
||||||
binding.viewpager.offscreenPageLimit = 3
|
binding.viewpager.offscreenPageLimit = 3
|
||||||
|
|||||||
@ -159,7 +159,6 @@ class MyKeyboardView @JvmOverloads constructor(
|
|||||||
)?.let { drawBG ->
|
)?.let { drawBG ->
|
||||||
icDel = getStatus(drawBG, drawBG)
|
icDel = getStatus(drawBG, drawBG)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
getbgic(con, it.plus(AppVal.parent_path).plus(AppVal.title_shitf_ic_lock))?.let {
|
getbgic(con, it.plus(AppVal.parent_path).plus(AppVal.title_shitf_ic_lock))?.let {
|
||||||
icShittLock = it
|
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
|
<ImageView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:src="@mipmap/ic_launcher" />
|
android:src="@mipmap/png_logo_icon" />
|
||||||
</androidx.cardview.widget.CardView>
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
<!--AppName-->
|
<!--AppName-->
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<resources>
|
<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_share">Share our Apps</string>
|
||||||
<string name="main_menu_rate">Find us in store</string>
|
<string name="main_menu_rate">Find us in store</string>
|
||||||
<string name="main_menu_set">Setting</string>
|
<string name="main_menu_set">Setting</string>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user