File tree Expand file tree Collapse file tree 4 files changed +31
-0
lines changed Expand file tree Collapse file tree 4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -74,4 +74,7 @@ dependencies {
74
74
75
75
// LiveData
76
76
implementation ' androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
77
+
78
+ // Lottie
79
+ implementation ' com.airbnb.android:lottie:3.6.1'
77
80
}
Original file line number Diff line number Diff line change 20
20
android : theme =" @style/Theme.PlzStop"
21
21
android : usesCleartextTraffic =" true"
22
22
tools : targetApi =" 31" >
23
+ <activity
24
+ android : name =" .SplashActivity"
25
+ android : exported =" false" >
26
+ <meta-data
27
+ android : name =" android.app.lib_name"
28
+ android : value =" " />
29
+ </activity >
30
+
23
31
<provider
24
32
android : name =" androidx.startup.InitializationProvider"
25
33
android : authorities =" ${applicationId}.androidx-startup"
26
34
tools : node =" remove" />
35
+
27
36
<activity
28
37
android : name =" .MainActivity"
29
38
android : exported =" true" >
Original file line number Diff line number Diff line change
1
+ package com.stop
2
+
3
+ import androidx.appcompat.app.AppCompatActivity
4
+ import android.os.Bundle
5
+
6
+ class SplashActivity : AppCompatActivity () {
7
+ override fun onCreate (savedInstanceState : Bundle ? ) {
8
+ super .onCreate(savedInstanceState)
9
+ setContentView(R .layout.activity_splash)
10
+ }
11
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <androidx .constraintlayout.widget.ConstraintLayout
3
+ xmlns : android =" http://schemas.android.com/apk/res/android"
4
+ xmlns : tools =" http://schemas.android.com/tools"
5
+ android : layout_width =" match_parent"
6
+ android : layout_height =" match_parent"
7
+ tools : context =" .SplashActivity" >
8
+ </androidx .constraintlayout.widget.ConstraintLayout>
You can’t perform that action at this time.
0 commit comments