Chore: update permissions
This commit is contained in:
parent
38dbbb3b32
commit
e6569694e4
3 changed files with 15 additions and 2 deletions
|
@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
# [0.7.1] - 2022-08-22
|
||||
### Fixed
|
||||
- remove unused ACCESS_FINE_LOCATION permission
|
||||
|
||||
# [0.7.1] - UNRELEASED
|
||||
### Fixed
|
||||
- missing openssl libraries which lead to an error in the https connection
|
||||
|
||||
# [0.7.0] - 2022-08-14
|
||||
### Added
|
||||
- Startnumbers in speed flowchart
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<manifest package="com.itsblue.blueROCK" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
|
||||
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
|
||||
Remove the comment if you do not require these default permissions. -->
|
||||
<!-- %%INSERT_PERMISSIONS -->
|
||||
|
||||
|
||||
<!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
|
||||
Remove the comment if you do not require these default features. -->
|
||||
|
@ -85,4 +85,9 @@
|
|||
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="com.android.vending.BILLING"/>
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||
<uses-permission android:name="android.permission.CAMERA"/>
|
||||
</manifest>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
QT += quick qml quickcontrols2 purchasing
|
||||
CONFIG += c++11
|
||||
|
||||
VERSION = 0.7.0
|
||||
VERSION = 0.7.2
|
||||
TARGET = blueROCK
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
|
|
Loading…
Reference in a new issue