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

Commit e3578228 authored by tibbi's avatar tibbi
Browse files

adding Number Picker license

parent d88a5a7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ buildscript {
        propMinSdkVersion = 16
        propTargetSdkVersion = propCompileSdkVersion
        propVersionCode = 1
        propVersionName = '3.15.9'
        propVersionName = '3.15.10'
        kotlin_version = '1.2.30'
        support_libs = '27.1.0'
    }
+22 −22
Original line number Diff line number Diff line
@@ -40,8 +40,7 @@ class LicenseActivity : BaseSimpleActivity() {
        }
    }

    private fun initLicenses() =
            arrayOf(
    private fun initLicenses() = arrayOf(
            License(LICENSE_KOTLIN, R.string.kotlin_title, R.string.kotlin_text, R.string.kotlin_url),
            License(LICENSE_SUBSAMPLING, R.string.subsampling_title, R.string.subsampling_text, R.string.subsampling_url),
            License(LICENSE_GLIDE, R.string.glide_title, R.string.glide_text, R.string.glide_url),
@@ -60,6 +59,7 @@ class LicenseActivity : BaseSimpleActivity() {
            License(LICENSE_ROBOLECTRIC, R.string.robolectric_title, R.string.robolectric_text, R.string.robolectric_url),
            License(LICENSE_ESPRESSO, R.string.espresso_title, R.string.espresso_text, R.string.espresso_url),
            License(LICENSE_GSON, R.string.gson_title, R.string.gson_text, R.string.gson_url),
                    License(LICENSE_LEAK_CANARY, R.string.leak_canary_title, R.string.leakcanary_text, R.string.leakcanary_url)
            License(LICENSE_LEAK_CANARY, R.string.leak_canary_title, R.string.leakcanary_text, R.string.leakcanary_url),
            License(LICENSE_NUMBER_PICKER, R.string.number_picker_title, R.string.number_picker_text, R.string.number_picker_url)
    )
}
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ const val LICENSE_ROBOLECTRIC = 32768
const val LICENSE_ESPRESSO = 65536
const val LICENSE_GSON = 131072
const val LICENSE_LEAK_CANARY = 262144
const val LICENSE_NUMBER_PICKER = 524288

// global intents
const val OPEN_DOCUMENT_TREE = 1000
+1 −0
Original line number Diff line number Diff line
@@ -453,4 +453,5 @@
    <string name="espresso_title">Espresso (testing helper)</string>
    <string name="gson_title">Gson (JSON parser)</string>
    <string name="leak_canary_title">Leak Canary (memory leak detector)</string>
    <string name="number_picker_title">Number Picker (customizable number picker)</string>
</resources>
+1 −0
Original line number Diff line number Diff line
@@ -453,4 +453,5 @@
    <string name="espresso_title">Espresso (testing helper)</string>
    <string name="gson_title">Gson (JSON parser)</string>
    <string name="leak_canary_title">Leak Canary (memory leak detector)</string>
    <string name="number_picker_title">Number Picker (customizable number picker)</string>
</resources>
Loading