diff --git a/PdCore/build.gradle b/PdCore/build.gradle index eddf32c9..a3e0acc8 100644 --- a/PdCore/build.gradle +++ b/PdCore/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' -version = '1.0.3-SNAPSHOT' +version = '1.1.0' group = 'org.puredata.android' archivesBaseName = 'pd-core' diff --git a/README.md b/README.md index b9543dea..985a0dc9 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ dependencies { } ``` -Please note that pd-for-android depends on the vanilla version of Pure Data. Currently this is Pure Data vanilla version 0.47-1. You can get desktop distributions of it here: +Please note that pd-for-android depends on the vanilla version of Pure Data. Currently this is Pure Data vanilla version 0.48-0. You can get desktop distributions of it here: http://msp.ucsd.edu/software.html If you're building the patch for your app using the extended distribution of Pure Data, or any other distribution that is not vanilla, you should be careful not to use PD objects that are not part of the vanilla distribution, because these will not work with libpd out of the box. It is however possible to add PD externals to your pd-for-android app. For a simple example as to how this could be done see the PdTest app in this repository, specifically [the jni folder](https://github.com/libpd/pd-for-android/tree/master/PdTest/jni) and the [build.gradle](https://github.com/libpd/pd-for-android/tree/master/PdTest/build.gradle) file. If you take this path, you'll need to clone this repository and use it as the base folder for your app, similar to the way described in the following section on creating an .aar file. diff --git a/build.gradle b/build.gradle index 9cafed37..9e12d295 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.1.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1' + classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.1' } } @@ -21,5 +21,5 @@ ext { minSdkVersion = 17 compileSdkVersion = 27 buildToolsVersion = '27.0.3' - supportLibVersion = '27.0.1' + supportLibVersion = '27.1.1' }