-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'spine-android' into 4.2
- Loading branch information
Showing
97 changed files
with
14,784 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/caches | ||
/.idea/libraries | ||
/.idea/modules.xml | ||
/.idea/workspace.xml | ||
/.idea/navEditor.xml | ||
/.idea/assetWizardSettings.xml | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
plugins { | ||
alias(libs.plugins.androidApplication) | ||
alias(libs.plugins.jetbrainsKotlinAndroid) | ||
} | ||
|
||
android { | ||
namespace = "com.esotericsoftware.spine" | ||
compileSdk = 34 | ||
|
||
defaultConfig { | ||
applicationId = "com.esotericsoftware.spine" | ||
minSdk = 24 | ||
targetSdk = 34 | ||
versionCode = 1 | ||
versionName = "1.0" | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
vectorDrawables { | ||
useSupportLibrary = true | ||
} | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android-optimize.txt"), | ||
"proguard-rules.pro" | ||
) | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "1.8" | ||
} | ||
buildFeatures { | ||
compose = true | ||
} | ||
composeOptions { | ||
kotlinCompilerExtensionVersion = "1.5.1" | ||
} | ||
packaging { | ||
resources { | ||
excludes += "/META-INF/{AL2.0,LGPL2.1}" | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation(libs.androidx.core.ktx) | ||
implementation(libs.androidx.lifecycle.runtime.ktx) | ||
implementation(libs.androidx.activity.compose) | ||
implementation(platform(libs.androidx.compose.bom)) | ||
implementation(libs.androidx.ui) | ||
implementation(libs.androidx.ui.graphics) | ||
implementation(libs.androidx.ui.tooling.preview) | ||
implementation(libs.androidx.material3) | ||
implementation(libs.androidx.navigation.compose) | ||
implementation(libs.appcompat) | ||
|
||
testImplementation(libs.junit) | ||
androidTestImplementation(libs.androidx.junit) | ||
androidTestImplementation(libs.androidx.espresso.core) | ||
androidTestImplementation(platform(libs.androidx.compose.bom)) | ||
androidTestImplementation(libs.androidx.ui.test.junit4) | ||
debugImplementation(libs.androidx.ui.tooling) | ||
debugImplementation(libs.androidx.ui.test.manifest) | ||
|
||
implementation(project(":spine-android")) | ||
// Run `./gradlew publishToMavenLocal` in `spine-android` to use from local maven repo. | ||
// implementation("com.esotericsoftware:spine-android:4.2") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
24 changes: 24 additions & 0 deletions
24
...-android/app/src/androidTest/java/com/esotericsoftware/android/ExampleInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.esotericsoftware.android | ||
|
||
import androidx.test.platform.app.InstrumentationRegistry | ||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
import org.junit.Assert.* | ||
|
||
/** | ||
* Instrumented test, which will execute on an Android device. | ||
* | ||
* See [testing documentation](http://d.android.com/tools/testing). | ||
*/ | ||
@RunWith(AndroidJUnit4::class) | ||
class ExampleInstrumentedTest { | ||
@Test | ||
fun useAppContext() { | ||
// Context of the app under test. | ||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext | ||
assertEquals("com.esotericsoftware.spine", appContext.packageName) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:dataExtractionRules="@xml/data_extraction_rules" | ||
android:fullBackupContent="@xml/backup_rules" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/Theme.SpineAndroidExamples" | ||
tools:targetApi="34"> | ||
<activity | ||
android:name="MainActivity" | ||
android:exported="true" | ||
android:theme="@style/Theme.SpineAndroidExamples"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity android:name=".SimpleAnimationActivity" | ||
android:theme="@style/Theme.AppCompat.Light.NoActionBar"> | ||
</activity> | ||
|
||
</application> | ||
|
||
</manifest> |
Binary file not shown.
173 changes: 173 additions & 0 deletions
173
spine-android/app/src/main/assets/celestial-circus.atlas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
celestial-circus.png | ||
size: 1024, 1024 | ||
filter: Linear, Linear | ||
scale: 0.4 | ||
arm-back-down | ||
bounds: 324, 401, 38, 82 | ||
rotate: 90 | ||
arm-back-up | ||
bounds: 290, 44, 83, 116 | ||
rotate: 90 | ||
arm-front-down | ||
bounds: 706, 2, 36, 78 | ||
rotate: 90 | ||
arm-front-up | ||
bounds: 860, 138, 77, 116 | ||
bench | ||
bounds: 725, 256, 189, 48 | ||
body-bottom | ||
bounds: 879, 868, 154, 124 | ||
rotate: 90 | ||
body-top | ||
bounds: 725, 128, 126, 133 | ||
rotate: 90 | ||
chest | ||
bounds: 408, 26, 104, 93 | ||
cloud-back | ||
bounds: 752, 378, 202, 165 | ||
cloud-front | ||
bounds: 2, 2, 325, 196 | ||
rotate: 90 | ||
collar | ||
bounds: 786, 13, 47, 26 | ||
ear | ||
bounds: 1002, 643, 20, 28 | ||
eye-back-shadow | ||
bounds: 428, 395, 14, 10 | ||
eye-front-shadow | ||
bounds: 704, 529, 24, 14 | ||
eye-reflex-back | ||
bounds: 860, 128, 8, 7 | ||
rotate: 90 | ||
eye-reflex-front | ||
bounds: 726, 386, 10, 7 | ||
eye-white-back | ||
bounds: 835, 23, 13, 16 | ||
eye-white-front | ||
bounds: 1005, 1000, 22, 17 | ||
rotate: 90 | ||
eyelashes-down-back | ||
bounds: 232, 329, 11, 6 | ||
rotate: 90 | ||
eyelashes-down-front | ||
bounds: 913, 851, 15, 6 | ||
rotate: 90 | ||
eyelashes-top-back | ||
bounds: 408, 395, 18, 10 | ||
eyelashes-top-front | ||
bounds: 702, 179, 30, 16 | ||
rotate: 90 | ||
face | ||
bounds: 514, 26, 93, 102 | ||
rotate: 90 | ||
feathers-back | ||
bounds: 954, 625, 46, 46 | ||
feathers-front | ||
bounds: 706, 40, 72, 86 | ||
fringe-middle-back | ||
bounds: 200, 6, 33, 52 | ||
rotate: 90 | ||
fringe-middle-front | ||
bounds: 878, 76, 60, 50 | ||
rotate: 90 | ||
fringe-side-back | ||
bounds: 780, 41, 27, 94 | ||
rotate: 90 | ||
fringe-side-front | ||
bounds: 939, 161, 26, 93 | ||
glove-bottom-back | ||
bounds: 954, 572, 51, 41 | ||
rotate: 90 | ||
glove-bottom-front | ||
bounds: 916, 256, 47, 48 | ||
hair-back-1 | ||
bounds: 444, 395, 132, 306 | ||
rotate: 90 | ||
hair-back-2 | ||
bounds: 438, 211, 80, 285 | ||
rotate: 90 | ||
hair-back-3 | ||
bounds: 719, 306, 70, 268 | ||
rotate: 90 | ||
hair-back-4 | ||
bounds: 438, 121, 88, 262 | ||
rotate: 90 | ||
hair-back-5 | ||
bounds: 438, 293, 88, 279 | ||
rotate: 90 | ||
hair-back-6 | ||
bounds: 200, 41, 88, 286 | ||
hair-hat-shadow | ||
bounds: 232, 398, 90, 41 | ||
hand-back | ||
bounds: 954, 673, 60, 47 | ||
rotate: 90 | ||
hand-front | ||
bounds: 967, 172, 53, 60 | ||
hat-back | ||
bounds: 954, 802, 64, 45 | ||
rotate: 90 | ||
hat-front | ||
bounds: 780, 70, 96, 56 | ||
head-back | ||
bounds: 618, 17, 102, 86 | ||
rotate: 90 | ||
jabot | ||
bounds: 967, 234, 70, 55 | ||
rotate: 90 | ||
leg-back | ||
bounds: 232, 441, 210, 333 | ||
leg-front | ||
bounds: 444, 529, 258, 320 | ||
logo-brooch | ||
bounds: 954, 545, 16, 25 | ||
mouth | ||
bounds: 408, 121, 22, 6 | ||
neck | ||
bounds: 232, 342, 39, 56 | ||
rotate: 90 | ||
nose | ||
bounds: 742, 529, 6, 7 | ||
rotate: 90 | ||
nose-highlight | ||
bounds: 719, 300, 4, 4 | ||
nose-shadow | ||
bounds: 869, 128, 7, 8 | ||
pupil-back | ||
bounds: 730, 529, 10, 14 | ||
pupil-front | ||
bounds: 254, 21, 12, 18 | ||
rope-back | ||
bounds: 232, 383, 10, 492 | ||
rotate: 90 | ||
rope-front | ||
bounds: 232, 383, 10, 492 | ||
rotate: 90 | ||
rope-front-bottom | ||
bounds: 954, 735, 42, 65 | ||
skirt | ||
bounds: 2, 776, 440, 246 | ||
sock-bow | ||
bounds: 408, 407, 33, 32 | ||
spine-logo-body | ||
bounds: 879, 853, 13, 32 | ||
rotate: 90 | ||
star-big | ||
bounds: 939, 141, 18, 24 | ||
rotate: 90 | ||
star-medium | ||
bounds: 742, 537, 6, 8 | ||
rotate: 90 | ||
star-small | ||
bounds: 719, 378, 3, 4 | ||
rotate: 90 | ||
underskirt | ||
bounds: 2, 329, 445, 228 | ||
rotate: 90 | ||
underskirt-back | ||
bounds: 444, 851, 433, 171 | ||
wing-back | ||
bounds: 290, 129, 146, 252 | ||
wing-front | ||
bounds: 704, 545, 304, 248 | ||
rotate: 90 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.