Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 579f62cc60 | |||
| b53165a799 | |||
| af45d70f28 | |||
| 2d07860746 | |||
| c70a318fd9 | |||
| 10720164f8 | |||
| 7193d135d2 | |||
| b449a26b4d | |||
| c669386178 | |||
| 0a2293ac5b |
@@ -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
|
||||
|
||||
@@ -11,18 +11,15 @@ 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)
|
||||
|
||||
## ScreenShots:
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
<img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/SplashScreenSS.png"> <img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/ChatScreenSS.png"> <img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/ContactsScreenSS.png">
|
||||
<img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/SettingsScreenSS.png"> <img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/ProfileScreenSS.png"> <img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/LoginScreenSS.png">
|
||||
<img width="250" src="https://github.com/psavarmattas/chatcom/blob/main/screenshots/SignUpScreenSS.png">
|
||||
|
||||
## Contributors:
|
||||
|
||||
|
||||
@@ -22,6 +22,11 @@ android {
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled true
|
||||
shrinkResources true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
debug {
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24"
|
||||
android:tint="?attr/colorControlNormal">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M18,8h-1L17,6c0,-2.76 -2.24,-5 -5,-5S7,3.24 7,6v2L6,8c-1.1,0 -2,0.9 -2,2v10c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2L20,10c0,-1.1 -0.9,-2 -2,-2zM12,17c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2zM15.1,8L8.9,8L8.9,6c0,-1.71 1.39,-3.1 3.1,-3.1 1.71,0 3.1,1.39 3.1,3.1v2z"/>
|
||||
</vector>
|
||||
Reference in New Issue
Block a user