Migrate CI to Gitea and clean README links

This commit is contained in:
moonpower
2026-04-07 08:30:44 +02:00
parent 57931cd773
commit 9107a7e029
14 changed files with 593 additions and 120 deletions
+2
View File
@@ -67,12 +67,14 @@ dependencies {
def repoRootDir = rootProject.projectDir.parentFile
def nativeOutput = file("$projectDir/src/main/jniLibs/arm64-v8a/libarmsx.so")
def skipNativePrepare = System.getenv("ARMSX_SKIP_NATIVE_PREPARE") == "1"
tasks.register("prepareNativeBinaries") {
group = "native"
description = "Build SDL2/libarmsx via build.sh android."
inputs.file(new File(repoRootDir, "build.sh"))
outputs.file(nativeOutput)
onlyIf { !skipNativePrepare }
doLast {
exec {
workingDir repoRootDir
+2 -3
View File
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nanodata.armsx">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:name="android.app.Application"
@@ -15,7 +14,7 @@
android:launchMode="singleTask"
android:screenOrientation="sensorLandscape"
android:resizeableActivity="false"
android:theme="@style/AppTheme.NoOverlay">
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
+1 -1
View File
@@ -30,7 +30,7 @@ allprojects { project ->
configurations.all { config ->
config.resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'org.jetbrains.kotlin' && details.requested.name == 'kotlin-gradle-plugin') {
if (details.requested.group == 'org.jetbrains.kotlin') {
details.useVersion(rootProject.ext.kotlinVersion)
}
}