mirror of
https://github.com/ARMSX2/ARMSX1.git
synced 2026-08-24 16:53:35 -07:00
Migrate CI to Gitea and clean README links
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user