Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 32 additions & 41 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,47 +1,38 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
mavenLocal()
google()
gradlePluginPortal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath "org.wisepersist:gwt-gradle-plugin:$gwtPluginVersion"
}
repositories {
gradlePluginPortal()
google()
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
classpath "org.wisepersist:gwt-gradle-plugin:$gwtPluginVersion"
classpath 'com.android.tools.build:gradle:7.4.2'
}
}

allprojects {
group = 'com.github.mgsx-dev.gdx-gltf'
version = '2.1.0'

group = 'com.github.mgsx-dev.gdx-gltf'
version = '2.1.0'

apply plugin: "eclipse"
apply plugin: "idea"
}
configure(subprojects) {
apply plugin: 'java-library'
compileJava {
options.incremental = true
}
}
subprojects {
ext {
gdxVersion = '1.9.11'
junitVersion = '4.12'
}

apply plugin: 'maven-publish'

repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
mavenLocal()
gradlePluginPortal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
ext {
gdxVersion = '1.11.0'
junitVersion = '4.13.2'
}

repositories {
gradlePluginPortal()
google()
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://jitpack.io" }
}

apply plugin: "eclipse"
apply plugin: "idea"
}

eclipse.project.name = "gltf-root"
eclipse.project.name = "gltf-root"
42 changes: 22 additions & 20 deletions demo/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.mgsx.gltf.demo"
android:versionCode="4"
android:versionName="0.0.4">
package="net.mgsx.gltf.demo"
android:versionCode="4"
android:versionName="0.0.4">

<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="29" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/GdxTheme">
<activity
android:name="net.mgsx.gltf.demo.AndroidLauncher"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:exported="true"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="net.mgsx.gltf.demo.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-feature
android:glEsVersion="0x00030002"
android:required="true" />

</manifest>
Loading