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

Commit 109856ff authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Do not checkin "unknown" ABI, Fix Lint issues

parent 1a83f828
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -173,12 +173,6 @@
            <intent-filter>
                <action android:name="org.microg.gms.gcm.RECONNECT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.PACKAGE_REPLACED" />
                <data
                    android:path="com.google.android.gms"
                    android:scheme="package" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
            </intent-filter>
@@ -190,7 +184,6 @@
                    android:scheme="android_secret_code" />
            </intent-filter>
        </receiver>
        <receiver android:name="org.microg.gms.gcm.PendingReceiver" />

        <!-- DroidGuard -->

+2 −1
Original line number Diff line number Diff line
@@ -103,7 +103,8 @@ public class DeviceConfiguration {
        } else {
            nativePlatforms = new ArrayList<String>();
            nativePlatforms.add(Build.CPU_ABI);
            if (Build.CPU_ABI2 != null) nativePlatforms.add(Build.CPU_ABI2);
            if (Build.CPU_ABI2 != null && !Build.CPU_ABI2.equals("unknown"))
                nativePlatforms.add(Build.CPU_ABI2);
            return nativePlatforms;
        }
    }
+0 −20
Original line number Diff line number Diff line
/*
 * Copyright 2013-2015 µg Project Team
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.microg.gms.gcm;

public class PendingReceiver {
}