Skip to content

Commit

Permalink
1. remove location access from manifest (was for databeen)
Browse files Browse the repository at this point in the history
2. remove always up notify from setting (because its bugy yet)
3. get ready for version 1.8.0
  • Loading branch information
ali77gh committed Sep 21, 2019
1 parent 261f8f8 commit 4dd4c38
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 8 deletions.
1 change: 1 addition & 0 deletions app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/transforms" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/validate_signing_config" />
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
</content>
<orderEntry type="jdk" jdkName="Android API 28 Platform" jdkType="Android SDK" />
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ android {
applicationId "com.github.ali77gh.unitools"
minSdkVersion 19
targetSdkVersion 28
versionName '1.7.0'
versionName '1.8.0'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode 4
versionCode 5
}
buildTypes {
release {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
20 changes: 19 additions & 1 deletion app/release/output.json
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":4,"versionName":"1.7.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
[
{
"outputType": {
"type": "APK"
},
"apkInfo": {
"type": "MAIN",
"splits": [],
"versionCode": 5,
"versionName": "1.8.0",
"enabled": true,
"outputFile": "app-release.apk",
"fullName": "release",
"baseName": "release"
},
"path": "app-release.apk",
"properties": {}
}
]
5 changes: 3 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" /> <!-- silent -->
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <!-- databeen -->
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />

<!-- databeen -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

<application
android:allowBackup="true"
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/res/layout/fragment_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@
android:id="@+id/linear_settings_always_up_notification"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal">
android:orientation="horizontal"
android:visibility="gone">

<ImageView
android:layout_width="30dp"
Expand Down Expand Up @@ -216,7 +217,8 @@
android:layout_width="match_parent"
android:layout_height="1px"
android:alpha=".5"
android:background="@color/black" />
android:background="@color/black"
android:visibility="gone" />

<!--backup-->
<LinearLayout
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>
<string name="app_name">UniTools</string>
<string name="app_version">1.7.0</string>
<string name="app_version">1.8.0</string>

<string name="LangID">"en</string>

Expand Down

0 comments on commit 4dd4c38

Please sign in to comment.