Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4244b877 authored by Nihar Thakkar's avatar Nihar Thakkar
Browse files

Change package name to "foundation.e.cert4android"

parent eeaf9857
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="at.bitfire.cert4android">
	package="foundation.e.cert4android">

    <uses-permission android:name="android.permission.INTERNET"/>

+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 * http://www.gnu.org/licenses/gpl.html
 */

package at.bitfire.cert4android
package foundation.e.cert4android

import android.app.Service
import android.content.Intent
+3 −3
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="at.bitfire.cert4android">
	package="foundation.e.cert4android">

    <application>

        <service android:name=".CustomCertService"/>
        <service android:name="foundation.e.cert4android.CustomCertService"/>

        <activity
            android:name=".TrustCertificateActivity"
            android:name="foundation.e.cert4android.TrustCertificateActivity"
            android:label="@string/certificate_notification_connection_security"
            android:launchMode="singleInstance"
            android:excludeFromRecents="true"
+2 −2
Original line number Diff line number Diff line
package at.bitfire.cert4android;
package foundation.e.cert4android;

import at.bitfire.cert4android.IOnCertificateDecision;
import foundation.e.cert4android.IOnCertificateDecision;

interface ICustomCertService {

+1 −1
Original line number Diff line number Diff line
package at.bitfire.cert4android;
package foundation.e.cert4android;

interface IOnCertificateDecision {

Loading