Refer CHANGELOG.MD

Signed-off-by: psavarmattas <puranjaysavarmattas@gmail.com>
This commit is contained in:
2022-01-28 12:38:56 +05:30
parent af45d70f28
commit b53165a799
4 changed files with 27 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
8. Dark/Light Mode added.
9. Added Profile check in settings.
10. Code cleanup.
11. Enabled R8 compiler & Proguard Rules for added security.
## 0.0.1
1. Three Tabbed view

View File

@@ -11,6 +11,7 @@ This app provides End-To-End Encryption so that the word doesn't leak out.
6. Dark/Light Mode added.
7. Profile check in settings.
8. Three Tabbed view
9. Enabled R8 compiler & Proguard Rules for added security.
For More info view the [CHANGELOGS HERE](https://github.com/psavarmattas/chatcom/blob/main/CHANGELOG.MD)

View File

@@ -22,6 +22,11 @@ android {
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.debug
}

View File

@@ -0,0 +1,20 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.psmforums.chatcom",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "0.0.2",
"outputFile": "app-release.apk"
}
],
"elementType": "File"
}