A2DP Volume: Fix build

This commit is contained in:
Boris Kraut 2016-01-20 18:36:10 +01:00
parent 82858bc636
commit 52a313d260
2 changed files with 34 additions and 2 deletions

View file

@ -70,9 +70,9 @@ Build:2.11.12,125
extlibs=android/android-support-v4.jar
Build:2.11.13,126
disable=missing build.gradle file
commit=19958f960d641f317f4ffb920266f9f1ba6dde29
commit=ad4167b1048365e437c8ace14a5c842ebd6a72df
subdir=app
patch=gradle.patch
gradle=yes
Auto Update Mode:None

View file

@ -0,0 +1,32 @@
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..bba1a96
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,26 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion '23.0.2'
+ defaultConfig {
+ applicationId "a2dp.Vol"
+ minSdkVersion 15
+ targetSdkVersion 19
+ }
+
+ buildTypes {
+
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'src/main/AndroidManifest.xml'
+ }
+ }
+
+}
+
+dependencies {
+ compile 'com.android.support:support-v4:21.0.3'
+}