Skip to content

Commit eb5100a

Browse files
committed
Release alpha2
1 parent 45e3de9 commit eb5100a

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
bin/
1313
gen/
1414
out/
15+
app/release/
1516

1617
# Gradle files
1718
.gradle/
@@ -63,4 +64,4 @@ fastlane/report.xml
6364
fastlane/Preview.html
6465
fastlane/screenshots
6566
fastlane/test_output
66-
fastlane/readme.md
67+
fastlane/readme.md

.idea/codeStyles/Project.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "tech.httptoolkit.android"
1111
minSdkVersion 21
1212
targetSdkVersion 28
13-
versionCode 1
14-
versionName "1.0.0-alpha1"
13+
versionCode 2
14+
versionName "1.0.0-alpha2"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717

app/src/main/AndroidManifest.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
xmlns:tools="http://schemas.android.com/tools"
35
package="tech.httptoolkit.android">
46

57
<uses-permission android:name="android.permission.INTERNET" />
68
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
79
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
810
<uses-permission android:name="android.permission.CAMERA" />
911

12+
<uses-permission
13+
android:name="android.permission.READ_PHONE_STATE"
14+
tools:node="remove" />
15+
<uses-permission
16+
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
17+
tools:node="remove" />
18+
1019
<application
1120
android:name=".HttpToolkitApplication"
1221
android:allowBackup="true"

0 commit comments

Comments
 (0)