Skip to content

Commit 53410ba

Browse files
tctrdanoli3
authored andcommitted
Android example : creating a new really empty androidEmptyExample
change package name and application ID in buil.gradle to avoid erasing previously installed of apps coming back to a package name cc.openframeworks.android to avoid too much modifications when setting up a new project forgot to commit ofApp/gradle add gradlew (cherry picked from commit 0f6ac28)
1 parent 1031210 commit 53410ba

52 files changed

Lines changed: 1441 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/android/androidEmptyExample/addons.make

Whitespace-only changes.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
ext {
2+
//var = 'signExample.keystore'
3+
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
4+
buildscript {
5+
repositories {
6+
google()
7+
mavenCentral()
8+
}
9+
dependencies {
10+
classpath 'com.android.tools.build:gradle:7.4.2'
11+
}
12+
}
13+
14+
allprojects {
15+
repositories {
16+
google()
17+
mavenCentral()
18+
}
19+
ext {
20+
21+
}
22+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
android.useAndroidX=true
2+
android.enableJetifier=false
3+
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
4+
kotlin.code.style=official
5+
android.prefabVersion=1.0.+
6+
android.buildFeatures.prefab=true
7+
#ndkBuild=false
8+
# https://issuetracker.google.com/149575364
9+
android.enableParallelJsonGen=false
10+
#googleplay=true
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Jun 12 01:17:57 AEST 2023
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

examples/android/androidEmptyExample/gradlew

Lines changed: 160 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/android/androidEmptyExample/gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Wed May 08 13:54:16 CEST 2024
8+
sdk.dir=/Users/thierry/Library/Android/sdk

0 commit comments

Comments
 (0)