The commit message is:

Update strings, build configuration, and manifest to reflect new app name and signing details.
This commit is contained in:
LUX-Timber 2024-04-11 15:26:58 +08:00
parent 705a9f620d
commit 17193d559c
7 changed files with 25 additions and 20 deletions

6
.gitignore vendored
View File

@ -13,3 +13,9 @@
.externalNativeBuild
.cxx
local.properties
/app/release/app-release.apk
/app/release/baselineProfiles/0/app-release.dm
/app/release/baselineProfiles/1/app-release.dm
/info/info.txt
/info/key_emoticon_test.jks
/app/release/output-metadata.json

View File

@ -3,20 +3,7 @@
<component name="deploymentTargetDropDown">
<value>
<entry key="app">
<State>
<runningDeviceTargetSelectedWithDropDown>
<Target>
<type value="RUNNING_DEVICE_TARGET" />
<deviceKey>
<Key>
<type value="SERIAL_NUMBER" />
<value value="ZX1G22HXL8" />
</Key>
</deviceKey>
</Target>
</runningDeviceTargetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2024-04-11T05:55:42.206591900Z" />
</State>
<State />
</entry>
</value>
</component>

View File

@ -7,8 +7,17 @@ android {
namespace 'com.timber.soft.myemoticon'
compileSdk 34
signingConfigs {
debug {
storeFile file('D:\\Android_Files\\MyEmoticon\\info\\key_emoticon_test.jks')
storePassword 'key123'
keyPassword 'key123'
keyAlias 'key_emoticon'
}
}
defaultConfig {
applicationId "com.timber.soft.myemoticon"
applicationId "com.stickify.stickers.app.test"
minSdk 22
targetSdk 34
versionCode 1
@ -19,7 +28,11 @@ android {
buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

View File

@ -30,7 +30,7 @@
<provider
android:name=".StickerProvider"
android:authorities="com.timber.soft.myemoticon.StickerProvider"
android:authorities="com.stickify.stickers.app.test.StickerProvider"
android:enabled="true"
android:exported="true"
android:readPermission="com.whatsapp.sticker.READ" />

View File

@ -1,7 +1,7 @@
package com.timber.soft.myemoticon.tools
object AppVal {
const val AUTHOR = "com.timber.soft.myemoticon.StickerProvider"
const val AUTHOR = "com.stickify.stickers.app.test.StickerProvider"
const val STICKER_ACTION = "com.whatsapp.intent.action.ENABLE_STICKER_PACK"
const val KEY_PACK_ID = "sticker_pack_id"
const val KEY_PACK_AUTHORITY = "sticker_pack_authority"

View File

@ -50,7 +50,6 @@
android:layout_height="0dp"
android:background="@color/main_bg_color"
android:paddingStart="12dp"
android:paddingTop="12dp"
android:paddingEnd="12dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/app_bar"

View File

@ -1,5 +1,5 @@
<resources>
<string name="app_name">MyEmoticon</string>
<string name="app_name">Color Sticker</string>
<string name="main_share">Share our Apps</string>
<string name="main_rate">Find us in store</string>
<string name="google_play_link">https://play.google.com/store/apps/details?id=</string>