Skip to content

Commit

Permalink
add: App class
Browse files Browse the repository at this point in the history
  • Loading branch information
vadiole committed Feb 12, 2022
1 parent 8e207b0 commit 95fc53f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
package="vadiole.template">

<application
android:name=".TemplateApp"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:icon="@mipmap/ic_launcher"
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/kotlin/vadiole/template/TemplateApp.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package vadiole.template

import android.app.Application

class TemplateApp : Application()

0 comments on commit 95fc53f

Please sign in to comment.