Skip to content
Merged
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
18 changes: 17 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
steps:
- uses: actions/checkout@v4

# Check out the flixelgdx library so Gradle can use the local included build
# instead of pulling from JitPack (which avoids 401/authorization issues).
- name: Checkout flixelgdx library
uses: actions/checkout@v4
with:
repository: stringdotjar/flixelgdx
path: flixelgdx

# LibGDX typically uses Java 11 or newer.
- name: Set up JDK 17
uses: actions/setup-java@v4
Expand All @@ -42,7 +50,15 @@ jobs:
steps:
- uses: actions/checkout@v4

# LibGDX typically uses Java 11 or newer.
# Check out the flixelgdx library so Gradle can use the local included build
# instead of pulling from JitPack (which avoids 401/authorization issues).
- name: Checkout flixelgdx library
uses: actions/checkout@v4
with:
repository: stringdotjar/flixelgdx
path: flixelgdx

# LibGDX typically uses Java 11 or newer, however we use Java 17 for modern standards.
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand Down
4 changes: 3 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ configurations { natives }
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.5'
implementation project(':polyverse')
implementation project(':flixelgdx:android')
implementation("com.github.stringdotjar:flixelgdx-android:master-SNAPSHOT") {
changing = true
}
}

configurations {
Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,12 @@ subprojects {
}
}

// Always fetch latest master-SNAPSHOT for flixelgdx from JitPack (if not found locally).
configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, 'seconds'
cacheDynamicVersionsFor 0, 'seconds'
}
}

eclipse.project.name = 'Polyverse' + '-parent'
48 changes: 0 additions & 48 deletions flixelgdx/android/build.gradle

This file was deleted.

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions flixelgdx/build.gradle

This file was deleted.

58 changes: 0 additions & 58 deletions flixelgdx/core/build.gradle

This file was deleted.

Loading