mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-02 15:55:50 +00:00
* new compose project * classes for chat command and response * use val with get() for commands and responses * chat model * initial jetpack compose set up * wire it up with chat * first ability to send and receive messages * refactor model/controller interface * JSON samples * terminal view with items * playing around with json * JSON serialization works * parsing API responses in the terminal * add subclass for contactSubscribed reponse * remove android-poc * remove JSON example Co-authored-by: IanRDavies <ian_davies_@hotmail.co.uk>
27 lines
909 B
Groovy
27 lines
909 B
Groovy
buildscript {
|
|
ext {
|
|
compose_version = '1.1.0'
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.1.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:1.3.2"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.1.1' apply false
|
|
id 'com.android.library' version '7.1.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10'
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |