OpenEUICC/libs/hidden-apis/build.gradle
Peter Cai 0de44f7d03 Initial implementation of OpenEuiccService
Nothing is really implemented properly as of now :)

The hidden EuiccService APIs are included as a stubbed library, which
allows us to build outside of the AOSP source tree and support multiple
AOSP versions.
2022-05-03 16:04:34 -04:00

16 lines
251 B
Groovy

plugins {
id 'com.android.library'
}
android {
compileSdk 31
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
dependencies {
implementation 'org.jetbrains:annotations:15.0'
}