mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Move res values from build.gradle into strings.xml
This fixes an issue where the build type values were overriding the flavor values.
This commit is contained in:
17
briar-android/src/screenshotDebug/AndroidManifest.xml
Normal file
17
briar-android/src/screenshotDebug/AndroidManifest.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest
|
||||
package="org.briarproject.briar"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The following permissions are only needed for taking automatic screenshots (fastlane) -->
|
||||
|
||||
<!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
|
||||
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
||||
|
||||
<!-- Allows for storing and retrieving screenshots -->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
|
||||
<!-- Allows changing locales -->
|
||||
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
||||
</manifest>
|
||||
5
briar-android/src/screenshotDebug/res/values/strings.xml
Normal file
5
briar-android/src/screenshotDebug/res/values/strings.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name" translatable="false">Briar</string>
|
||||
<string name="app_package" translatable="false">org.briarproject.briar.android.screenshot.debug</string>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user