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

Verified Commit 888db749 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Fix lint issues, reduce min sdk version

parent c574c62e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -31,6 +31,10 @@ allprojects {

def androidCompileSdk() { return 24 }

def androidTargetSdk() { return 24 }

def androidMinSdk() { return 7 }

subprojects {
    repositories {
        jcenter()
+2 −0
Original line number Diff line number Diff line
@@ -31,6 +31,8 @@ android {

    defaultConfig {
        versionName getMyVersionName()
        minSdkVersion androidMinSdk()
        targetSdkVersion androidTargetSdk()
    }

    compileOptions {
+1 −7
Original line number Diff line number Diff line
@@ -15,10 +15,4 @@
  ~ limitations under the License.
  -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.microg.tools.ui">

    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="23" />
</manifest>
<manifest package="org.microg.tools.ui" />
+0 −5
Original line number Diff line number Diff line
@@ -262,9 +262,4 @@ public class SwitchBar extends LinearLayout implements CompoundButton.OnCheckedC

        requestLayout();
    }

    @Override
    public CharSequence getAccessibilityClassName() {
        return Switch.class.getName();
    }
}
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
        android:layout_marginLeft="72dp"
        android:layout_marginRight="16dp"
        android:layout_marginStart="72dp"
        android:gravity="start"
        android:textAlignment="viewStart"
        android:textColor="?android:attr/textColorPrimaryInverse"
        android:theme="@style/TextAppearance.AppCompat.Title.Inverse"/>
Loading