Skip to content

Commit

Permalink
Preparations for 0.5.0-pre3
Browse files Browse the repository at this point in the history
  • Loading branch information
Calsign committed Jun 23, 2018
1 parent d7c9092 commit a606721
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 15 deletions.
4 changes: 3 additions & 1 deletion APDE/build.gradle
Expand Up @@ -6,8 +6,10 @@ android {

defaultConfig {
applicationId "com.calsignlabs.apde"
minSdkVersion 15
minSdkVersion 17
targetSdkVersion 27
versionCode 24
versionName "0.5.0-pre3"
}

buildTypes {
Expand Down
13 changes: 1 addition & 12 deletions APDE/src/main/AndroidManifest.xml
Expand Up @@ -2,19 +2,11 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.calsignlabs.apde"
android:versionCode="23"
android:versionName="0.5.0-pre2"
android:installLocation="auto">

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="27"/>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- Will be needed in future versions of Android -->
<uses-permission android:name="android.permission.VIBRATE" />
<!-- For the drag'n'drop Message area's haptic feedback -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission-sdk-23 android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
Expand All @@ -26,10 +18,6 @@
android:label="@string/apde_app_title"
android:theme="@style/AppTheme">

<!--
Got rid of configChanges to solve problems... it's here if we need it, though:
android:configChanges="orientation|keyboardHidden|screenSize"
-->
<activity
android:name=".EditorActivity"
android:label="@string/apde_app_title"
Expand Down Expand Up @@ -118,6 +106,7 @@
android:name=".ReferenceActivity"
android:label="@string/title_activity_reference"
android:theme="@style/FullscreenTheme" />
<!-- Lets us share APKs and other files with other applications -->
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.calsignlabs.apde.fileprovider"
Expand Down
15 changes: 15 additions & 0 deletions APDE/src/main/assets/whatsnew.txt
@@ -1,3 +1,18 @@
v0.5.0-pre3 Alpha

- Watch face sketches!
- Improved VR support: mono (magic window) mode and Daydream headsets
- Updated examples
- Many bugs fixed

Note: To run watch faces, you must install the APDE Wear Companion app
from the Play Store on the watch.

As before, check out the previous release notes if you have not yet
done so.

------------------------------------------------------------------------

v0.5.0-pre2 Alpha

- VR sketches!
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -5,7 +5,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.1.3'
}
}

Expand Down
2 changes: 1 addition & 1 deletion wear-companion/build.gradle
Expand Up @@ -7,7 +7,7 @@ android {
applicationId "com.calsignlabs.apde"
minSdkVersion 23
targetSdkVersion 27
versionCode 1
versionCode 25
versionName "1.0"
}
buildTypes {
Expand Down
1 change: 1 addition & 0 deletions wear-companion/src/main/AndroidManifest.xml
Expand Up @@ -4,6 +4,7 @@
package="com.calsignlabs.apde.wearcompanion">

<uses-feature android:name="android.hardware.type.watch"/>
<uses-feature android:name="android.hardware.microphone" android:required="false"/>

<uses-permission android:name="android.permission.WAKE_LOCK" />

Expand Down

0 comments on commit a606721

Please sign in to comment.