File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
scripts/templates/android Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:8.9.1 '
10
+ classpath ' com.android.tools.build:gradle:8.9.3 '
11
11
}
12
12
}
13
13
@@ -30,7 +30,7 @@ final ofLibProject = ofMainRoot() + 'libs/openFrameworksCompiled/project/android
30
30
31
31
task printPaths {
32
32
doLast {
33
- println " 🔍 Checking Paths..."
33
+ println " Checking Paths..."
34
34
println " OF Source: ${ file(ofSource).absolutePath} "
35
35
println " OF Lib Output: ${ file(ofLibProject).absolutePath} "
36
36
println " Current Working Directory: ${ projectDir.absolutePath} "
@@ -40,16 +40,16 @@ task printPaths {
40
40
task checkGradleDir {
41
41
doLast {
42
42
def gradleDir = file(ofLibProject). absoluteFile
43
- println " 🔍 Checking directory: ${ gradleDir} "
44
- println " ✅ Exists? ${ gradleDir.exists()} "
45
- println " 📂 List contents: ${ gradleDir.listFiles()} "
43
+ println " Checking directory: ${ gradleDir} "
44
+ println " Exists? ${ gradleDir.exists()} "
45
+ println " List contents: ${ gradleDir.listFiles()} "
46
46
}
47
47
}
48
48
49
49
50
50
task setupGradle {
51
51
doLast {
52
- println " 🔍 Checking Gradle setup..."
52
+ println " Checking Gradle setup..."
53
53
def gradleDir = file(ofLibProject). absoluteFile
54
54
def gradleWrapper = new File (gradleDir, " gradlew" )
55
55
Original file line number Diff line number Diff line change
1
+ # Fri Feb 11 01:53:09 AEDT 2025
2
+ distributionBase =GRADLE_USER_HOME
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
4
+ distributionPath =wrapper/dists
5
+ zipStorePath =wrapper/dists
6
+ zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def enableProguardInReleaseBuilds = true
18
18
def enableProguardInDebugBuilds = false
19
19
20
20
task wrapper (type : Wrapper ) {
21
- gradleVersion = ' 8.9.0 '
21
+ gradleVersion = ' 8.14.3 '
22
22
}
23
23
tasks. register(" prepareKotlinBuildScriptModel" ){
24
24
}
@@ -75,7 +75,7 @@ android {
75
75
compileSdkVersion 34
76
76
buildToolsVersion ' 35.0.0'
77
77
// ndkPath "/Users/x/android-ndk-r21e" // Point to your own NDK if needed
78
- ndkVersion ' 28.0.13004108 ' // use android studio side loaded ndk
78
+ ndkVersion ' 28.2.13676358 ' // use android studio side loaded ndk
79
79
buildFeatures {
80
80
prefab true
81
81
}
You can’t perform that action at this time.
0 commit comments