Browse Source

Fix Android SDK min version required

pull/557/head
Guillaume Vincent 4 years ago
parent
commit
1ae08b4963
3 changed files with 5 additions and 5 deletions
  1. +3
    -3
      mobile/android/build.gradle
  2. +1
    -1
      mobile/package.json
  3. +1
    -1
      mobile/src/version.json

+ 3
- 3
mobile/android/build.gradle View File

@@ -33,10 +33,10 @@ allprojects {
} }


ext { ext {
buildToolsVersion = "28.0.3"
buildToolsVersion = "30.0.0"
minSdkVersion = 16 minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
compileSdkVersion = 30
targetSdkVersion = 30
def npmVersion = getNpmVersionArray() def npmVersion = getNpmVersionArray()
versionMajor = npmVersion[0] versionMajor = npmVersion[0]
versionMinor = npmVersion[1] versionMinor = npmVersion[1]


+ 1
- 1
mobile/package.json View File

@@ -1,6 +1,6 @@
{ {
"name": "lesspass-mobile", "name": "lesspass-mobile",
"version": "9.1.10",
"version": "9.1.11",
"description": "LessPass mobile application", "description": "LessPass mobile application",
"license": "(MPL-2.0 OR GPL-3.0)", "license": "(MPL-2.0 OR GPL-3.0)",
"author": { "author": {


+ 1
- 1
mobile/src/version.json View File

@@ -1,3 +1,3 @@
{ {
"version": "9.1.9"
"version": "9.1.11"
} }

Loading…
Cancel
Save