This is an automated email from the ASF dual-hosted git repository.
awasum pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/fineract-cn-mobile.git
The following commit(s) were added to refs/heads/development by this push:
new 2e3373e FINCN-241 kotlin-kapt error
new 028c23a Merge pull request #116 from j-sal/FINCN-241
2e3373e is described below
commit 2e3373e55a8a898de1ed273d5847e9a7009b3ef4
Author: Joey Salazar <[email protected]>
AuthorDate: Wed Oct 28 16:35:44 2020 -0600
FINCN-241 kotlin-kapt error
The kotlin-android plugin must come before the kotlin-kapt plugin,
without which the application cannot run.
Fix the plugin order in app/build.gradle.
Signed-off-by: Joey Salazar <[email protected]>
---
app/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/build.gradle b/app/build.gradle
index 0c7f303..3903ba3 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
apply plugin: 'com.android.application'
-apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android'
+apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'io.fabric'
apply from: '../config/quality/quality.gradle'