diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-11-06 08:14:27 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-11-06 08:14:27 +0000 |
commit | 95d9421d4d982562f83db019e5c3f59c5acfcdf4 (patch) | |
tree | 56c69c0911e512aaaecd22cb02f2c1305f42d8e2 /core/build.gradle | |
parent | 50e213ce1db332b95af5018e553c0ee2cd810e39 (diff) | |
parent | 9d55978063947d5865bb3fa4e0c2ebef78f78812 (diff) |
Merge branch 'epic18-standalone_trackers_tor' into 'main'
epic18: Manage VPN services for Tor or Tracker control
See merge request e/os/advanced-privacy!149
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' |