Do not checkin "unknown" ABI, Fix Lint issues

This commit is contained in:
mar-v-in 2015-08-25 02:06:03 +02:00
parent 1a83f8281f
commit 109856ffd0
3 changed files with 2 additions and 28 deletions

View File

@ -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 -->

View File

@ -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;
}
}

View File

@ -1,20 +0,0 @@
/*
* 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 {
}