Skip to content

Commit

Permalink
* Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Andr3Carvalh0 committed Mar 26, 2018
1 parent 8b61600 commit 5e4cfc2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
19 changes: 14 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ android {
versionCode 1
versionName "0.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}

android.compileOptions.sourceCompatibility 1.8
android.compileOptions.targetCompatibility 1.8
}


configurations.all {
resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
}
Expand All @@ -39,6 +35,19 @@ android {
path "../mgba/CMakeLists.txt"
}
}


defaultConfig {
externalNativeBuild {
cmake {
arguments "-DUSE_SQLITE3=0",
"-DDISABLE_FRONTENDS=1",
"-DHAVE_STRTOF_L=1",
"-DUSE_LIBZIP=0",
"-DUSE_ZLIB=0"
}
}
}
}

dependencies {
Expand Down
3 changes: 0 additions & 3 deletions app/src/main/java/io/mgba/todo

This file was deleted.

9 changes: 9 additions & 0 deletions todo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---------------------------- JAVA -------------------------------
* [REALLY-LOW] Add option to customize game controllers.
* [LOW] Reload games when switching directories.

---------------------------- NATIVE -----------------------------
* [MEDIUM] FIX: mgba/src/util/vfs/vfs-fd.c, line 172

---------------------------- DATABASE ---------------------------
* [LOW] Fix "pokemon accents".

0 comments on commit 5e4cfc2

Please sign in to comment.