Skip to content

Commit

Permalink
Fixed #42
Browse files Browse the repository at this point in the history
  • Loading branch information
UriahShaulMandel committed Aug 16, 2019
1 parent 470687c commit 2468eaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
11 changes: 5 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
<?xml version="1.0" encoding="utf-8"?><!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
Expand Down Expand Up @@ -41,7 +40,6 @@
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />



<uses-permission
android:name="android.permission.WRITE_SETTINGS"
tools:ignore="ProtectedPermissions" />
Expand All @@ -53,9 +51,10 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/bald_light">
android:supportsRtl="true"
android:theme="@style/bald_light"
tools:ignore="UnusedAttribute">


<activity
Expand Down Expand Up @@ -201,7 +200,7 @@
android:process=":remote" />
<receiver android:name=".broadcast_receivers.DownloadManagerReceiver">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE"/>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
</intent-filter>
</receiver>

Expand Down
3 changes: 0 additions & 3 deletions app/src/main/java/com/bald/uriah/baldphone/BaldPhone.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@

public class BaldPhone extends Application {
private static final String TAG = BaldPhone.class.getSimpleName();


// Application class should not have any fields, http://www.developerphil.com/dont-store-data-in-the-application-object/

@Override
Expand All @@ -64,7 +62,6 @@ public void onCreate() {
S.sendVersionInfo(this);
}


@Override
protected void attachBaseContext(final Context base) {
super.attachBaseContext(base);
Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/xml/network_security_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
~ specific language governing permissions and limitations
~ under the License.
-->

<network-security-config>
<base-config cleartextTrafficPermitted="true">
<trust-anchors>
Expand Down

0 comments on commit 2468eaf

Please sign in to comment.