-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use build-plugin 3.1.2 * Address lint issue * Target SDK 27 * Migrate to androidx. Update gradle and other plugins. * Automated build with github actions * :Request for storage permission, bug fixs for #216 and #220 * Resources for release version and other build flavors because of upgrade to AndroidX * Update kontinuum config * f * update gradle and compile withCloud flavorr * use LegacyExternalStorage path * fixed some compile warning. * wrong use of golink_path ? * Fix lint errors Co-authored-by: 徐鸿(XuHong) <[email protected]>
- Loading branch information
Showing
100 changed files
with
527 additions
and
506 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 |
---|---|---|
@@ -1,4 +1,21 @@ | ||
{ | ||
"type":"android", | ||
"stages":["spoon","lint","test","assemble"] | ||
"type": "android", | ||
"stages": [ | ||
{ | ||
"name": "spoon", | ||
"needsEmulator": true | ||
}, | ||
{ | ||
"name": "lint", | ||
"needsEmulator": false | ||
}, | ||
{ | ||
"name": "test", | ||
"needsEmulator": false | ||
}, | ||
{ | ||
"name": "assembleRelease", | ||
"needsEmulator": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Android CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Build with Gradle | ||
run: sudo ./gradlew assemble | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./**/*.apk | ||
if-no-files-found: warn | ||
|
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
2 changes: 1 addition & 1 deletion
2
android/src/androidTest/java/org/ligi/gobandroid_hd/test_helper_functions/AssetReader.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
14 changes: 7 additions & 7 deletions
14
android/src/androidTest/java/org/ligi/gobandroid_hd/test_helper_functions/GoViewActions.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
8 changes: 4 additions & 4 deletions
8
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheEditGameActivity.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
10 changes: 5 additions & 5 deletions
10
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheGameInfoDialog.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
10 changes: 5 additions & 5 deletions
10
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheGameScoringActivity.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
10 changes: 5 additions & 5 deletions
10
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheGameSetupActivity.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
10 changes: 5 additions & 5 deletions
10
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheGoActivity.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
10 changes: 5 additions & 5 deletions
10
android/src/androidTest/java/org/ligi/gobandroid_hd/uitest/TheGoGamePlayerActivity.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
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
Oops, something went wrong.