FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
processing-android/processing/build.gradle at main · codeanticode/processing-android · GitHub
This repository was archived by the owner on May 11, 2025. It is now read-only.
codeanticode
/
processing-android
Public archive
forked from
processing/processing-android
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
processing-android
/
processing
/
build.gradle
Copy path
More file actions
More file actions
Latest commit
History
History
History
175 lines (147 loc) · 7.6 KB
Breadcrumbs
processing-android
/
processing
/
build.gradle
Copy path
File metadata and controls
175 lines (147 loc) · 7.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import
java.nio.file.Files
import
org.zeroturnaround.zip.ZipUtil
import
org.apache.commons.io.FileUtils
import
java.util.regex.Pattern
import static
java.nio.file.StandardCopyOption.REPLACE_EXISTING;
buildscript
{
repositories {
google()
mavenCentral()
}
dependencies {
classpath
'
com.android.tools.build:gradle:7.3.1
'
classpath
group
:
'
commons-io
'
,
name
:
'
commons-io
'
,
version
:
'
2.12.0
'
classpath
group
:
'
org.zeroturnaround
'
,
name
:
'
zt-zip
'
,
version
:
'
1.15
'
}
}
plugins
{
id
'
java
'
id(
'
io.github.gradle-nexus.publish-plugin
'
) version
'
1.1.0
'
}
apply
from
:
"
${
rootDir
}
/scripts/publish-root.gradle
"
allprojects
{
apply
plugin
:
'
java
'
apply
plugin
:
'
java-library
'
Properties
versions
=
new
Properties
()
versions
.
load(project
.
rootProject
.
file(
"
mode/version.properties
"
)
.
newDataInputStream())
ext
.
targetSdkVersion
=
versions
.
getProperty(
"
android-platform
"
)
ext
.
appcompatVersion
=
versions
.
getProperty(
"
androidx.appcompat%appcompat
"
)
ext
.
v4legacyVersion
=
versions
.
getProperty(
"
androidx.legacy%legacy-support-v4
"
)
ext
.
wearVersion
=
versions
.
getProperty(
"
com.google.android.support%wearable
"
)
ext
.
gvrVersion
=
versions
.
getProperty(
"
com.google.vr
"
)
ext
.
garVersion
=
versions
.
getProperty(
"
com.google.ar
"
)
ext
.
processingVersion
=
versions
.
getProperty(
"
org.processing
"
)
ext
.
toolingVersion
=
versions
.
getProperty(
"
org.gradle%gradle-tooling-api
"
)
ext
.
slf4jVersion
=
versions
.
getProperty(
"
org.slf4j
"
)
ext
.
gradlewVersion
=
versions
.
getProperty(
"
gradle-wrapper
"
)
ext
.
toolsLibVersion
=
versions
.
getProperty(
"
android-toolslib
"
)
ext
.
jdtVersion
=
versions
.
getProperty(
"
org.eclipse.jdt
"
)
Properties
modeProperties
=
new
Properties
()
modeProperties
.
load(project
.
rootProject
.
file(
"
mode/mode.properties
"
)
.
newDataInputStream())
ext
.
modeVersion
=
modeProperties
.
getProperty(
"
prettyVersion
"
)
Properties
vrProperties
=
new
Properties
()
vrProperties
.
load(project
.
rootProject
.
file(
"
mode/libraries/vr/library.properties
"
)
.
newDataInputStream())
ext
.
vrLibVersion
=
vrProperties
.
getProperty(
"
prettyVersion
"
)
Properties
arProperties
=
new
Properties
()
arProperties
.
load(project
.
rootProject
.
file(
"
mode/libraries/ar/library.properties
"
)
.
newDataInputStream())
ext
.
arLibVersion
=
arProperties
.
getProperty(
"
prettyVersion
"
)
def
fn
=
project
.
rootProject
.
file(
"
local.properties
"
)
if
(
!
fn
.
exists()) {
if
(
System
.
env[
"
ANDROID_SDK
"
]
!=
null
) {
def
syspath
=
System
.
env[
"
ANDROID_SDK
"
]
def
parts
=
syspath
.
split(
Pattern
.
quote(
File
.
separator))
def
path
=
String
.
join(
"
/
"
, parts)
fn
.
withWriterAppend {
w
->
w
<<
"
sdk.dir=
${
path
}
\n
"
}
}
else
{
throw
new
GradleException
(
"
The file local.properties does not exist, and there is no ANDROID_SDK environmental variable defined in the system.
\n
"
+
"
Define ANDROID_SDK so it points to the location of the Android SDK, or create the local.properties file manually
\n
"
+
"
and add the following line to it:
\n
"
+
"
sdk.dir=<path to Android SDK>
"
)
}
}
Properties
localProperties
=
new
Properties
()
localProperties
.
load(project
.
rootProject
.
file(
"
local.properties
"
)
.
newDataInputStream())
def
sdkDir
=
localProperties
.
getProperty(
"
sdk.dir
"
)
ext
.
androidPlatformPath
=
"
${
sdkDir
}
/platforms/android-
${
targetSdkVersion
}
"
ext
.
coreZipPath
=
"
${
rootDir
}
/mode/processing-core.zip
"
repositories {
google()
mavenCentral()
maven { url
"
https://maven.google.com
"
}
maven { url
"
https://jitpack.io
"
}
maven { url
'
https://repo.gradle.org/gradle/libs-releases
'
}
flatDir
dirs
: androidPlatformPath
flatDir
dirs
:
"
${
rootDir
}
/core/build/libs
"
}
compileJava {
sourceCompatibility
=
JavaVersion
.
VERSION_1_8
targetCompatibility
=
JavaVersion
.
VERSION_1_8
//
Uncomment this option when building with Java 11+
//
https://github.com/processing/processing-android/issues/625
//
options.release = 8
}
}
clean
.
doFirst
{
delete
"
dist
"
}
task
dist
{
dependsOn subprojects
.
build
doLast {
def
root
=
"
${
buildDir
}
/zip/AndroidMode
"
//
Copy assets to build dir
FileUtils
.
copyDirectory(file(
"
mode/templates
"
), file(
"
${
root
}
/templates
"
))
FileUtils
.
copyDirectory(file(
"
mode/examples
"
), file(
"
${
root
}
/examples
"
))
FileUtils
.
copyDirectory(file(
"
mode/icons
"
), file(
"
${
root
}
/icons
"
))
FileUtils
.
copyDirectory(file(
"
mode/theme
"
), file(
"
${
root
}
/theme
"
))
FileUtils
.
copyDirectory(file(
"
mode/mode
"
), file(
"
${
root
}
/mode
"
))
delete
"
${
root
}
/mode/core.jar
"
delete
"
${
root
}
/mode/pde.jar
"
delete
"
${
root
}
/mode/JavaMode.jar
"
//
delete "${root}/mode/jdi.jar"
//
delete "${root}/mode/jdimodel.jar"
Files
.
copy(file(
"
mode/processing-core.zip
"
)
.
toPath(),
file(
"
${
root
}
/processing-core.zip
"
)
.
toPath(),
REPLACE_EXISTING
)
Files
.
copy(file(
"
mode/keywords.txt
"
)
.
toPath(),
file(
"
${
root
}
/keywords.txt
"
)
.
toPath(),
REPLACE_EXISTING
)
Files
.
copy(file(
"
mode/version.properties
"
)
.
toPath(),
file(
"
${
root
}
/version.properties
"
)
.
toPath(),
REPLACE_EXISTING
)
Files
.
copy(file(
"
mode/mode.properties
"
)
.
toPath(),
file(
"
${
root
}
/mode.properties
"
)
.
toPath(),
REPLACE_EXISTING
)
FileUtils
.
copyDirectory(file(
"
mode/languages
"
),
file(
"
${
root
}
/languages
"
))
FileUtils
.
copyDirectory(file(
"
mode/resources
"
),
file(
"
${
root
}
/resources
"
))
FileUtils
.
copyDirectory(file(
"
mode/tools/SDKUpdater/tool
"
),
file(
"
${
root
}
/tools/SDKUpdater/tool
"
))
FileUtils
.
copyDirectory(file(
"
mode/tools/SDKUpdater/lib
"
),
file(
"
${
root
}
/tools/SDKUpdater/lib
"
))
FileUtils
.
copyDirectory(file(
"
mode/tools/SDKUpdater/src
"
),
file(
"
${
root
}
/tools/SDKUpdater/src
"
))
FileUtils
.
copyDirectory(file(
"
mode/libraries/vr/examples
"
),
file(
"
${
root
}
/libraries/vr/examples
"
))
FileUtils
.
copyDirectory(file(
"
mode/libraries/vr/library
"
),
file(
"
${
root
}
/libraries/vr/library
"
))
FileUtils
.
copyDirectory(file(
"
mode/libraries/vr/libs
"
),
file(
"
${
root
}
/libraries/vr/libs
"
))
FileUtils
.
copyDirectory(file(
"
../libs/processing-vr/src/main/java/
"
),
file(
"
${
root
}
/libraries/vr/src
"
))
Files
.
copy(file(
"
mode/libraries/vr/library.properties
"
)
.
toPath(),
file(
"
${
root
}
/libraries/vr/library.properties
"
)
.
toPath(),
REPLACE_EXISTING
)
FileUtils
.
copyDirectory(file(
"
mode/libraries/ar/examples
"
),
file(
"
${
root
}
/libraries/ar/examples
"
))
FileUtils
.
copyDirectory(file(
"
mode/libraries/ar/library
"
),
file(
"
${
root
}
/libraries/ar/library
"
))
FileUtils
.
copyDirectory(file(
"
../libs/processing-ar/src/main/java/
"
),
file(
"
${
root
}
/libraries/ar/src
"
))
Files
.
copy(file(
"
mode/libraries/ar/library.properties
"
)
.
toPath(),
file(
"
${
root
}
/libraries/ar/library.properties
"
)
.
toPath(),
REPLACE_EXISTING
)
File
distFolder
=
file(
"
dist
"
)
distFolder
.
mkdirs()
ZipUtil
.
pack(file(
"
${
buildDir
}
/zip
"
),
new
File
(
"
dist/AndroidMode.zip
"
))
Files
.
copy(file(
"
mode/mode.properties
"
)
.
toPath(),
file(
"
dist/AndroidMode.txt
"
)
.
toPath(),
REPLACE_EXISTING
)
}
}
Back
|
FazBrowse Home
|
New Git URL