Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Alexandre Roux D'Anzi
9dd0c10403 fixing bad override 2024-02-27 13:09:54 +01:00
Alexandre Roux D'Anzi
655eb5cf52 fixing syntax not existing in older kotlin 2024-02-27 13:09:35 +01:00
Alexandre Roux D'Anzi
284c0664f6 removing asn1c not existing in project anymore 2024-02-27 13:09:08 +01:00
3 changed files with 2 additions and 14 deletions

View file

@ -29,7 +29,7 @@ open class EuiccChannelManager(protected val context: Context) {
}
protected open val uiccCards: Collection<UiccCardInfoCompat>
get() = (0..<tm.activeModemCountCompat).map { FakeUiccCardInfoCompat(it) }
get() = (0 until tm.activeModemCountCompat).map { FakeUiccCardInfoCompat(it) }
private suspend fun ensureSEService() {
if (seService == null) {

View file

@ -59,7 +59,7 @@ class NotificationsActivity: AppCompatActivity(), OpenEuiccContextMarker {
refresh()
}
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
override fun onCreateOptionsMenu(menu: Menu): Boolean {
super.onCreateOptionsMenu(menu)
menuInflater.inflate(R.menu.activity_notifications, menu)
return true

View file

@ -13,16 +13,6 @@ cc_library_static {
],
}
cc_library_static {
name: "liblpac-asn1c",
defaults: ["lpac-jni-defaults"],
local_include_dirs: ["lpac/euicc/asn1c"],
cflags: ["-DHAVE_CONFIG_H"],
srcs: [
"lpac/euicc/asn1c/asn1/*.c",
],
}
cc_library_static {
name: "liblpac-euicc",
defaults: ["lpac-jni-defaults"],
@ -30,7 +20,6 @@ cc_library_static {
"lpac/euicc/*.c",
],
static_libs: [
"liblpac-asn1c",
"liblpac-cjson",
],
}
@ -44,7 +33,6 @@ cc_library_shared {
],
static_libs: [
"liblpac-euicc",
"liblpac-asn1c",
"liblpac-cjson",
],
shared_libs: ["liblog"],