diff --git a/.gitignore b/.gitignore index fb8e9e0..3a874cb 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,15 @@ bin/ gen/ +.idea +.gradle +build/ +gradle/ +gradlew +gradlew.bat + +.settings/ + # Local configuration file (sdk path, etc) local.properties diff --git a/PressureNet-SDK.iml b/PressureNet-SDK.iml new file mode 100644 index 0000000..eebb826 --- /dev/null +++ b/PressureNet-SDK.iml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle index f69d031..b8f5e25 100644 --- a/build.gradle +++ b/build.gradle @@ -3,21 +3,22 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.4' + classpath 'com.android.tools.build:gradle:1.2.3' } } -apply plugin: 'android-library' +apply plugin: 'com.android.library' dependencies { + compile 'com.google.android.gms:play-services:7.5.0' } android { - compileSdkVersion 17 - buildToolsVersion "17" + compileSdkVersion 21 + buildToolsVersion "21.1.2" defaultConfig { - minSdkVersion 8 - targetSdkVersion 17 + minSdkVersion 9 + targetSdkVersion 21 } sourceSets { main {