2020-07-19 07:44:11 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2024-03-16 11:08:46 +00:00
|
|
|
compileSdkVersion 33
|
2020-07-19 07:44:11 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2022-11-01 09:51:10 +00:00
|
|
|
// API-Version . minor
|
2022-08-17 09:09:53 +00:00
|
|
|
minSdkVersion 19
|
2024-03-16 11:08:46 +00:00
|
|
|
targetSdkVersion 33
|
2020-07-19 07:44:11 +00:00
|
|
|
}
|
|
|
|
|
2022-11-01 09:51:10 +00:00
|
|
|
lint {
|
2020-07-19 07:44:11 +00:00
|
|
|
abortOnError false
|
|
|
|
}
|
2022-11-01 09:51:10 +00:00
|
|
|
namespace 'org.openintents.openpgp'
|
2024-03-17 02:41:10 +00:00
|
|
|
buildFeatures {
|
|
|
|
aidl true
|
|
|
|
}
|
2020-07-19 07:44:11 +00:00
|
|
|
}
|