Fix build.gradle and add gradle/Android Studio entries to gitignore

This commit is contained in:
Henrique Gemignani Passos Lima
2017-02-19 10:48:35 -03:00
parent ab888ac39f
commit 76230b01f9
3 changed files with 18 additions and 2 deletions
+12
View File
@@ -14,3 +14,15 @@ local.properties
*.a
*.orig
*.rej
# Downloaded gradle wrapper
.gradle
# Android Studio project files
.idea
*.iml
# Gradle build files
build
.externalNativeBuild
+3 -2
View File
@@ -6,12 +6,13 @@ android {
// See https://code.google.com/p/android/issues/detail?id=52962
// and http://stackoverflow.com/questions/27277433/why-does-gradle-build-my-module-in-release-mode-when-the-app-is-in-debug
// defaultPublishConfig "debug"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
compileSdkVersion 25
buildToolsVersion "25.0.2"
minSdkVersion 10
externalNativeBuild {
ndkBuild {
arguments "-j2"
+3
View File
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.love2d.android.library" xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>