We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc510bf commit 2d86582Copy full SHA for 2d86582
android/build.gradle
@@ -27,6 +27,11 @@ project.getTasks().withType(JavaCompile){
27
apply plugin: 'com.android.library'
28
29
android {
30
+ // Conditional for compatibility with AGP <4.2.
31
+ if (project.android.hasProperty("namespace")) {
32
+ namespace 'com.lazyarts.vikram.cached_video_player'
33
+ }
34
+
35
compileSdkVersion 29
36
37
defaultConfig {
android/src/main/AndroidManifest.xml
@@ -1,3 +1,2 @@
1
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="com.lazyarts.vikram.cached_video_player">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
</manifest>
0 commit comments