File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed
java/com/pranavpandey/android/dynamic/motion/sample Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ buildscript {
20
20
' minSdk' : 18 ,
21
21
' targetSdk' : 30 ,
22
22
' buildTools' : ' 30.0.3' ,
23
- ' appcompat' : ' 1.2 .0' ,
23
+ ' appcompat' : ' 1.3 .0' ,
24
24
' constraintlayout' : ' 2.0.4' ,
25
25
' kotlin' : ' 1.5.10' ,
26
26
' viewpager2' : ' 1.0.0'
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ version = mavenVersion
23
23
// Android libraries
24
24
if (project. hasProperty(" android" )) {
25
25
task sourcesJar(type : Jar ) {
26
- from android. sourceSets. main. java. srcDirs
27
26
archiveClassifier. set(" sources" )
27
+ from android. sourceSets. main. java. srcDirs
28
28
}
29
29
30
30
task javadoc(type : Javadoc ) {
Original file line number Diff line number Diff line change 15
15
limitations under the License.
16
16
-->
17
17
18
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
19
- package =" com.pranavpandey.android.dynamic" >
18
+ <manifest
19
+ xmlns : android =" http://schemas.android.com/apk/res/android"
20
+ package =" com.pranavpandey.android.dynamic.motion.sample" >
20
21
21
22
<application
22
- android : allowBackup =" false"
23
23
android : icon =" @mipmap/ic_launcher"
24
24
android : label =" @string/app_name"
25
+ android : theme =" @style/AppTheme"
25
26
android : supportsRtl =" true"
26
- android : theme =" @style/AppTheme" >
27
+ android : allowBackup =" false" >
28
+
29
+ <meta-data android : name =" android.max_aspect" android : value =" 2.1" />
27
30
28
31
<activity
29
- android : name =" com.pranavpandey.android.dynamic.motion.sample.DynamicMotionActivity" >
32
+ android : name =" .DynamicMotionActivity"
33
+ android : label =" @string/app_name"
34
+ android : theme =" @style/AppTheme"
35
+ android : exported =" true" >
30
36
<intent-filter >
31
37
<action android : name =" android.intent.action.VIEW" />
32
38
<action android : name =" android.intent.action.MAIN" />
36
42
37
43
</application >
38
44
39
- </manifest >
45
+ </manifest >
Original file line number Diff line number Diff line change 18
18
19
19
import android .os .Bundle ;
20
20
21
- import com .pranavpandey .android .dynamic .R ;
22
-
23
21
import androidx .appcompat .app .AppCompatActivity ;
24
22
25
23
public class DynamicMotionActivity extends AppCompatActivity {
You can’t perform that action at this time.
0 commit comments