Browse Source

Allow backup set to false

master
Preyea Regmi 6 years ago
parent
commit
b83c999f7e
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 2
      app/build.gradle
  3. 3
      app/src/main/AndroidManifest.xml

BIN
.idea/caches/build_file_checksums.ser

2
app/build.gradle

@ -21,7 +21,7 @@ android {
applicationId "com.gmeremit.online.gmeremittance_native" applicationId "com.gmeremit.online.gmeremittance_native"
minSdkVersion 18 minSdkVersion 18
targetSdkVersion 28 targetSdkVersion 28
versionCode 1
versionCode 2
versionName "1.0.0" versionName "1.0.0"
multiDexEnabled true multiDexEnabled true
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true

3
app/src/main/AndroidManifest.xml

@ -33,10 +33,11 @@
<application <application
android:name=".GmeApplication" android:name=".GmeApplication"
android:allowBackup="true"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:largeHeap="true" android:largeHeap="true"
tools:replace="android:allowBackup"
android:roundIcon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">

Loading…
Cancel
Save