diff options
Diffstat (limited to 'core/build.gradle')
-rw-r--r-- | core/build.gradle | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/build.gradle b/core/build.gradle index 0e53f22..3b5234d 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,4 +1,5 @@ /* + * Copyright (C) 2023 MURENA SAS * Copyright (C) 2022 E FOUNDATION * * This program is free software: you can redistribute it and/or modify @@ -15,8 +16,12 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -apply plugin: 'com.android.library' -apply plugin: 'kotlin-android' +plugins { + id 'com.android.library' + id 'kotlin-android' + id 'kotlin-kapt' + id 'kotlin-parcelize' +} group 'foundation.e' |