Skip to content

Commit 8d8f3ff

Browse files
committed
added the lib namespaces to the build files
1 parent a327820 commit 8d8f3ff

File tree

6 files changed

+8
-35
lines changed

6 files changed

+8
-35
lines changed

libs/processing-ar/build.gradle

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 33
6+
namespace "processing.ar"
7+
78
defaultConfig {
89
minSdkVersion 19
910
targetSdkVersion 33
1011
}
11-
// sourceSets {
12-
// main {
13-
// manifest.srcFile 'AndroidManifest.xml'
14-
// java.srcDirs = ['../../../mode/libraries/ar/src']
15-
// assets.srcDirs = ['../../../mode/libraries/ar/src/assets']
16-
// }
17-
// }
12+
1813
compileOptions {
1914
sourceCompatibility JavaVersion.VERSION_1_8
2015
targetCompatibility JavaVersion.VERSION_1_8
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="processing_ar" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

libs/processing-core/build.gradle

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,12 @@ plugins {
44

55
android {
66
namespace "processing"
7-
compileSdkVersion 33
87

98
defaultConfig {
109
minSdkVersion 17
1110
targetSdkVersion 33
12-
versionCode 1
13-
versionName "1.0"
14-
15-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1611
}
1712

18-
// sourceSets {
19-
// main {
20-
// manifest.srcFile 'AndroidManifest.xml'
21-
// java.srcDirs = ['../../../core/src']
22-
// assets.srcDirs = ['../../../core/src/assets']
23-
// }
24-
// }
2513
compileOptions {
2614
sourceCompatibility JavaVersion.VERSION_1_8
2715
targetCompatibility JavaVersion.VERSION_1_8
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="processing_core" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

libs/processing-vr/build.gradle

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 33
4+
namespace "processing.vr"
5+
56
defaultConfig {
67
minSdkVersion 19
78
targetSdkVersion 33
89
}
910

10-
// sourceSets {
11-
// main {
12-
// manifest.srcFile 'AndroidManifest.xml'
13-
// java.srcDirs = ['../../../mode/libraries/vr/src']
14-
// }
15-
// }
1611
compileOptions {
1712
sourceCompatibility JavaVersion.VERSION_1_8
1813
targetCompatibility JavaVersion.VERSION_1_8
@@ -22,8 +17,6 @@ android {
2217
}
2318

2419
dependencies {
25-
2620
implementation project(':libs:processing-core')
2721
implementation project(':libs:google-vr')
28-
// implementation files('libs/google-vr/sdk-base-1.180.0.ar')
2922
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="processing_vr" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />

0 commit comments

Comments
 (0)