aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-01-24 20:03:49 -0800
committerAllan Wang <me@allanwang.ca>2021-01-24 20:03:49 -0800
commit53392bc41b7315896f520cdc9d3d59cc4f0fcabc (patch)
tree202a8b6fd5d03ab0f123b93e3fb071006a8b621b
parent2c85dae785b67241ef72500ac3c43fdff86bbad0 (diff)
downloadfrost-53392bc41b7315896f520cdc9d3d59cc4f0fcabc.tar.gz
frost-53392bc41b7315896f520cdc9d3d59cc4f0fcabc.tar.bz2
frost-53392bc41b7315896f520cdc9d3d59cc4f0fcabc.zip
Disable kotlin android extensions
-rw-r--r--app/build.gradle7
-rw-r--r--app/src/test/kotlin/com/pitchedapps/frost/facebook/FbConstTest.kt18
2 files changed, 18 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 2a0f7768..24fdd28e 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
-apply plugin: 'kotlin-android-extensions'
+apply plugin: 'kotlin-parcelize'
apply plugin: 'kotlin-kapt'
//apply plugin: 'com.getkeepsafe.dexcount'
apply plugin: 'com.gladed.androidgitversion'
@@ -204,11 +204,6 @@ android {
}
}
- androidExtensions {
- experimental = true
- features = ["parcelize"]
- }
-
}
node {
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbConstTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbConstTest.kt
index 8a8c42d6..83bce973 100644
--- a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbConstTest.kt
+++ b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbConstTest.kt
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2021 Allan Wang
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
package com.pitchedapps.frost.facebook
import kotlin.test.Test
@@ -34,4 +50,4 @@ class FbConstTest {
)
}
}
-} \ No newline at end of file
+}