Skip to content

Commit 00c46a6

Browse files
committed
add back scanner From shadowsocksrr#7
Signed-off-by: Love4Taylor <[email protected]>
1 parent 6ef0532 commit 00c46a6

File tree

10 files changed

+453
-208
lines changed

10 files changed

+453
-208
lines changed

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ libraryDependencies ++=
5555
"com.twofortyfouram" % "android-plugin-api-for-locale" % "1.0.2" ::
5656
"dnsjava" % "dnsjava" % "2.1.7" ::
5757
"eu.chainfire" % "libsuperuser" % "1.0.0.+" ::
58+
"me.dm7.barcodescanner" % "zxing" % "1.9.8" ::
5859
"net.glxn.qrgen" % "android" % "2.0" ::
5960
"com.squareup.okhttp3" % "okhttp" % "3.8.0" ::
6061
"com.google.code.findbugs" % "jsr305" % "1.3.+" ::

src/main/AndroidManifest.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
xmlns:tools="http://schemas.android.com/tools" package="com.github.shadowsocks"
3-
android:versionCode="318"
4-
android:versionName="3.4.0.7">
3+
android:versionCode="319"
4+
android:versionName="3.4.0.8">
55

66
<uses-permission android:name="android.permission.INTERNET"/>
77
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
88
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
99
<uses-permission android:name="android.permission.NFC" />
10+
<uses-permission android:name="android.permission.CAMERA" />
1011

1112
<uses-feature android:name="android.hardware.touchscreen"
1213
android:required="false"/>
@@ -16,6 +17,8 @@
1617
android:required="false"/>
1718
<uses-feature android:name="android.software.leanback"
1819
android:required="false"/>
20+
<uses-feature android:name="android.hardware.camera"
21+
android:required="false"/>
1922

2023
<uses-sdk
2124
android:minSdkVersion="16"

0 commit comments

Comments
 (0)