Skip to content

Commit

Permalink
Enable app archive feature and fix disabled broadcast receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
patzly committed Aug 31, 2022
1 parent f4f8ba1 commit 50d5777
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ android {
}
}

bundle {
storeArchive {
enable true
}
}

compileOptions {
sourceCompatibility 11
targetCompatibility 11
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,10 @@

<receiver
android:name=".receiver.DailyReceiver"
android:enabled="true" />
android:exported="false" />

<receiver
android:name=".receiver.BootReceiver"
android:enabled="false"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
Expand Down

0 comments on commit 50d5777

Please sign in to comment.