Skip to content

Commit

Permalink
aarch64 supported; fresh installation created engine folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Hong Chen committed Mar 9, 2018
1 parent ea6a5ec commit 6cabf9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ protected String[] getProcessArgs() {
@Override
protected File getEngineFile() {
File dir = new File(_context.getDir());
if (!dir.exists()){
// todo : handle failure
dir.mkdirs();
}

File file = new File(dir, "pachi");

Expand Down
2 changes: 1 addition & 1 deletion elygo-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion '26.0.2'

defaultConfig {
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 24
}
}
Expand Down

0 comments on commit 6cabf9a

Please sign in to comment.