Browse Source

update logo, icon android smart farm

smf
daivph 5 years ago
parent
commit
3cf890493b
25 changed files with 16 additions and 16 deletions
  1. +9
    -9
      android/app/google-services.json
  2. +2
    -2
      android/app/src/main/AndroidManifest.xml
  3. BIN
      android/app/src/main/ic_launcher-playstore.png
  4. +1
    -1
      android/app/src/main/kotlin/vn/azteam/farmdemo/Application.kt
  5. +1
    -1
      android/app/src/main/kotlin/vn/azteam/farmdemo/FirebaseCloudMessagingPluginRegistrant.kt
  6. +1
    -1
      android/app/src/main/res/drawable/launch_background.xml
  7. +1
    -1
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
  8. +1
    -1
      android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
  9. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher.png
  10. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
  11. BIN
      android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
  12. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher.png
  13. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
  14. BIN
      android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
  15. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
  16. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
  17. BIN
      android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
  18. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
  19. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
  20. BIN
      android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
  21. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
  22. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
  23. BIN
      android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
  24. BIN
      android/app/src/main/res/mipmap-xxxhdpi/splash.png
  25. BIN
      android/app/src/main/res/mipmap-xxxhdpi/splash_tpf.png

+ 9
- 9
android/app/google-services.json View File

{ {
"project_info": { "project_info": {
"project_number": "618842128088",
"firebase_url": "https://tpfarm-825d1.firebaseio.com",
"project_id": "tpfarm-825d1",
"storage_bucket": "tpfarm-825d1.appspot.com"
"project_number": "133633341213",
"firebase_url": "https://farm-demo-71aca.firebaseio.com",
"project_id": "farm-demo-71aca",
"storage_bucket": "farm-demo-71aca.appspot.com"
}, },
"client": [ "client": [
{ {
"client_info": { "client_info": {
"mobilesdk_app_id": "1:618842128088:android:5f81adc58e59c111dea1ad",
"mobilesdk_app_id": "1:133633341213:android:0b36de8098b76572cb53f4",
"android_client_info": { "android_client_info": {
"package_name": "vn.azteam.tpfarm"
"package_name": "vn.azteam.farmdemo"
} }
}, },
"oauth_client": [ "oauth_client": [
{ {
"client_id": "618842128088-etjunrg8qmvgcaena37qo2qn1i1latao.apps.googleusercontent.com",
"client_id": "133633341213-kn4dgpqmfrtc1sd4a24v5ptdgnokj6vi.apps.googleusercontent.com",
"client_type": 3 "client_type": 3
} }
], ],
"api_key": [ "api_key": [
{ {
"current_key": "AIzaSyBRkxNrNKNlzvXykRspeT-7Dcnw-o9ILGQ"
"current_key": "AIzaSyAnFlBYZNtXUVMFwOqf0d6eY2AyQMqgaSY"
} }
], ],
"services": { "services": {
"appinvite_service": { "appinvite_service": {
"other_platform_oauth_client": [ "other_platform_oauth_client": [
{ {
"client_id": "618842128088-etjunrg8qmvgcaena37qo2qn1i1latao.apps.googleusercontent.com",
"client_id": "133633341213-kn4dgpqmfrtc1sd4a24v5ptdgnokj6vi.apps.googleusercontent.com",
"client_type": 3 "client_type": 3
} }
] ]

+ 2
- 2
android/app/src/main/AndroidManifest.xml View File

<uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.CAMERA" />
<application <application
android:name=".Application" android:name=".Application"
android:label="Tiên Phong Farm"
android:label="Smart Farm"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true"> android:requestLegacyExternalStorage="true">
<activity <activity
android:label="" /> android:label="" />
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"
android:label="Tiên Phong Farm"
android:label="Smart Farm"
android:launchMode="singleTop" android:launchMode="singleTop"
android:theme="@style/LaunchTheme" android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"

BIN
android/app/src/main/ic_launcher-playstore.png View File

Before After
Width: 512  |  Height: 512  |  Size: 13KB

android/app/src/main/kotlin/vn/azteam/tpfarm/Application.kt → android/app/src/main/kotlin/vn/azteam/farmdemo/Application.kt View File

package vn.azteam.tpfarm
package vn.azteam.farmdemo


import io.flutter.app.FlutterApplication import io.flutter.app.FlutterApplication
import io.flutter.plugin.common.PluginRegistry import io.flutter.plugin.common.PluginRegistry

android/app/src/main/kotlin/vn/azteam/tpfarm/FirebaseCloudMessagingPluginRegistrant.kt → android/app/src/main/kotlin/vn/azteam/farmdemo/FirebaseCloudMessagingPluginRegistrant.kt View File

package vn.azteam.tpfarm
package vn.azteam.farmdemo
import io.flutter.plugin.common.PluginRegistry import io.flutter.plugin.common.PluginRegistry
import io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin import io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin



+ 1
- 1
android/app/src/main/res/drawable/launch_background.xml View File

<item> <item>
<bitmap <bitmap
android:gravity="center" android:gravity="center"
android:src="@mipmap/splash_tpf" />
android:src="@mipmap/splash" />
</item> </item>
</layer-list> </layer-list>

+ 1
- 1
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml View File

<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon> </adaptive-icon>

+ 1
- 1
android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml View File

<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/> <background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon> </adaptive-icon>

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png View File

Before After
Width: 72  |  Height: 72  |  Size: 4.8KB Width: 72  |  Height: 72  |  Size: 1.3KB

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png View File

Before After
Width: 162  |  Height: 162  |  Size: 1.9KB

BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png View File

Before After
Width: 72  |  Height: 72  |  Size: 6.7KB Width: 72  |  Height: 72  |  Size: 3.4KB

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png View File

Before After
Width: 48  |  Height: 48  |  Size: 2.7KB Width: 48  |  Height: 48  |  Size: 773B

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png View File

Before After
Width: 108  |  Height: 108  |  Size: 1.3KB

BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png View File

Before After
Width: 48  |  Height: 48  |  Size: 4.2KB Width: 48  |  Height: 48  |  Size: 2.1KB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png View File

Before After
Width: 96  |  Height: 96  |  Size: 5.5KB Width: 96  |  Height: 96  |  Size: 1.7KB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png View File

Before After
Width: 216  |  Height: 216  |  Size: 2.6KB

BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png View File

Before After
Width: 96  |  Height: 96  |  Size: 9.5KB Width: 96  |  Height: 96  |  Size: 4.9KB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png View File

Before After
Width: 144  |  Height: 144  |  Size: 7.9KB Width: 144  |  Height: 144  |  Size: 2.6KB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png View File

Before After
Width: 324  |  Height: 324  |  Size: 3.9KB

BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png View File

Before After
Width: 144  |  Height: 144  |  Size: 14KB Width: 144  |  Height: 144  |  Size: 7.7KB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png View File

Before After
Width: 192  |  Height: 192  |  Size: 11KB Width: 192  |  Height: 192  |  Size: 3.3KB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png View File

Before After
Width: 432  |  Height: 432  |  Size: 5.5KB

BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png View File

Before After
Width: 192  |  Height: 192  |  Size: 20KB Width: 192  |  Height: 192  |  Size: 11KB

BIN
android/app/src/main/res/mipmap-xxxhdpi/splash.png View File

Before After
Width: 1080  |  Height: 1920  |  Size: 22KB

BIN
android/app/src/main/res/mipmap-xxxhdpi/splash_tpf.png View File

Before After
Width: 1080  |  Height: 1920  |  Size: 97KB

Loading…
Cancel
Save