Skip to content

Commit 589bba4

Browse files
committed
Add SD card permission for pre-Kitkat devices. This was causing an issue for some imports
Update version number for v2.3.0-beta2 update
1 parent e65a483 commit 589bba4

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'io.fabric'
66
def versionMajor = 2
77
def versionMinor = 3
88
def versionPatch = 0
9-
def versionBuild = 1
9+
def versionBuild = 2
1010

1111
static def buildTime() {
1212
def df = new SimpleDateFormat("yyyyMMdd HH:mm 'UTC'")

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
<uses-permission android:name="android.permission.INTERNET"
4646
android:label="Export and backup to 3rd party hosting services" />
4747
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
48+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
49+
android:label="Import books and backup files into GnuCash"
50+
android:maxSdkVersion="18" />
4851

4952
<application android:name="org.gnucash.android.app.GnuCashApplication"
5053
android:icon="@drawable/ic_launcher"

0 commit comments

Comments
 (0)