-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
46 additions
and
32 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
project/android/app/src/main/java/com/zeromake/onscripter/Globals.java
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package com.zeromake.onscripter; | ||
|
||
public class Globals { | ||
public static String CurrentDirectoryPathForLauncher = null; | ||
public static String CurrentDirectoryPath = null; | ||
public static String[] CurrentDirectoryPathArray = null; | ||
public static String[] CurrentDirectoryValidPathArray = null; | ||
public static final String[] CURRENT_DIRECTORY_PATH_TEMPLATE_ARRAY = new String[]{"${SDCARD}/mine", "${SDCARD}/ons"}; | ||
public static boolean CurrentGameRunning = false; | ||
} | ||
package com.zeromake.onscripter; | ||
|
||
public class Globals { | ||
public static String CurrentDirectoryPathForLauncher = null; | ||
public static String CurrentDirectoryPath = null; | ||
public static String[] CurrentDirectoryPathArray = null; | ||
public static String[] CurrentDirectoryValidPathArray = null; | ||
public static final String[] CURRENT_DIRECTORY_PATH_TEMPLATE_ARRAY = new String[]{"${SDCARD}/mine", "${SDCARD}/ons"}; | ||
public static boolean CurrentGameRunning = false; | ||
} |
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
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
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
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
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
pluginManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
rootProject.name = "onscripter" | ||
rootProject.buildFileName = "build.gradle.kts" | ||
|
||
include(":app") | ||
include(":XXPermissions") | ||
pluginManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
rootProject.name = "onscripter" | ||
rootProject.buildFileName = "build.gradle.kts" | ||
|
||
include(":app") | ||
include(":XXPermissions") |