Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37e61f24 authored by Amit Kumar's avatar Amit Kumar 💻
Browse files

Add kotlin support in BlissLauncher

parent e5055008
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
apply plugin: 'com.android.application'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'


// Manifest version information!
// Manifest version information!
def versionMajor = 1
def versionMajor = 1
@@ -108,8 +109,10 @@ dependencies {
    // Rx Relay
    // Rx Relay
    implementation "com.jakewharton.rxrelay2:rxrelay:${rootProject.ext.rxRelayVersion}"
    implementation "com.jakewharton.rxrelay2:rxrelay:${rootProject.ext.rxRelayVersion}"


    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

    // Blur Library
    // Blur Library
    implementation 'com.hoko:hoko-blur:1.3.4'
    implementation project(':hoko-blur')


    // Room
    // Room
    implementation "android.arch.persistence.room:runtime:1.1.1"
    implementation "android.arch.persistence.room:runtime:1.1.1"
+2 −0
Original line number Original line Diff line number Diff line
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// Top-level build file where you can add configuration options common to all sub-projects/modules.


buildscript {
buildscript {
    ext.kotlin_version = '1.3.60'
    repositories {
    repositories {
        google()
        google()
        jcenter()
        jcenter()
@@ -10,6 +11,7 @@ buildscript {
    }
    }
    dependencies {
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'
        classpath 'com.android.tools.build:gradle:3.5.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.6'
        classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.6'
    }
    }
}
}