build: update acra, proper manifest wake lock permission fix.

make sure to override the uses-permission from acra.
master
Floens 7 years ago
parent cd3307d5d7
commit 099465239a
  1. 2
      Clover/app/build.gradle
  2. 5
      Clover/app/src/main/AndroidManifest.xml

@ -154,5 +154,5 @@ dependencies {
implementation 'me.xdrop:fuzzywuzzy:1.1.10'
implementation 'org.codejargon.feather:feather:1.0'
releaseImplementation 'ch.acra:acra-http:5.0.1'
releaseImplementation 'ch.acra:acra-http:5.1.3'
}

@ -16,6 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.floens.chan"
android:installLocation="auto">
@ -23,7 +24,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission
android:name="android.permission.WAKE_LOCK"
tools:node="replace" />
<application
android:name=".ChanApplication"

Loading…
Cancel
Save