From ee3a8b876d6ff2e2a2d8c9ed021b4fe49e981c43 Mon Sep 17 00:00:00 2001 From: "Marco Coelho (MarcoTTC)" Date: Sun, 27 Jan 2019 20:53:01 -0200 Subject: [PATCH 01/12] Updating project to use gradle 4.10.1 and gradle plugin 3.3.0 --- .gitignore | 47 ++++++++- .idea/gradle.xml | 7 +- .idea/vcs.xml | 5 +- SoundRecorder | 1 - app/app.iml | 120 ----------------------- app/build.gradle | 19 ++-- build.gradle | 14 ++- gradle/wrapper/gradle-wrapper.properties | 4 +- 8 files changed, 75 insertions(+), 142 deletions(-) delete mode 160000 SoundRecorder delete mode 100644 app/app.iml diff --git a/.gitignore b/.gitignore index afbdab33..c27b86cb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,47 @@ +#built application files +*.apk +*.ap_ + +# files for the dex VM +*.dex + +# Java class files +*.class + +# built native files (uncomment if you build your own) +# *.o +# *.so + +# generated files +bin/ +gen/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Eclipse Metadata +.metadata/ + +# OSX files +.DS_Store + +#Screenshot +captures + +# Android Studio Projects +*.iml +app/app.iml +.idea .gradle -/local.properties +/build +.navigation /.idea/workspace.xml +/.idea/tasks.xml /.idea/libraries -.DS_Store -/build + +#NDK +obj/ +.externalNativeBuild diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 2a7f5bfc..e96cd333 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -3,9 +3,12 @@