code saving
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import org.gradle.kotlin.dsl.`kotlin-dsl`
|
||||
|
||||
plugins {
|
||||
`kotlin-dsl`
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\BuildPlugins$android$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\BuildPlugins$kotlin$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\BuildPlugins.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\ConfigData.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$acra$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$appCompat$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$cardView$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$core$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$coroutineAndroid$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$coroutineCore$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$desugaring$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$fragment$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$gson$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$jsoup$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$kotlin$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$material$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$preferences$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$recyclerView$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$roomCompiler$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$roomRuntime$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps$swipeRefreshLayout$2.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Deps.class;D:\Workspace\Android\fast-messenger\buildSrc\build\classes\kotlin\main\Versions.class
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
18
|
||||
15
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
implementation-classpath=D\:/Workspace/Android/fast-messenger/buildSrc/build/classes/java/main;D\:/Workspace/Android/fast-messenger/buildSrc/build/classes/groovy/main;D\:/Workspace/Android/fast-messenger/buildSrc/build/classes/kotlin/main;D\:/Workspace/Android/fast-messenger/buildSrc/build/resources/main
|
||||
@@ -0,0 +1,8 @@
|
||||
src\main\resources
|
||||
src\main\java
|
||||
src\main\groovy
|
||||
src\main\kotlin
|
||||
src\test\resources
|
||||
src\test\java
|
||||
src\test\groovy
|
||||
src\test\kotlin
|
||||
@@ -0,0 +1,2 @@
|
||||
Manifest-Version: 1.0
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
object ConfigData {
|
||||
|
||||
const val compileSdkVersion = 30
|
||||
const val buildToolsVersion = "30.0.3"
|
||||
const val minSdkVersion = 23
|
||||
const val targetSdkVersion = 30
|
||||
const val versionCode = 1
|
||||
const val versionName = "1.0"
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
object BuildPlugins {
|
||||
val android by lazy { "com.android.tools.build:gradle:${Versions.gradlePlugin}" }
|
||||
val kotlin by lazy { "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}" }
|
||||
}
|
||||
|
||||
object Deps {
|
||||
val kotlin by lazy { "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlin}" }
|
||||
|
||||
val desugaring by lazy { "com.android.tools:desugar_jdk_libs:${Versions.desugaring}" }
|
||||
|
||||
val appCompat by lazy { "androidx.appcompat:appcompat:${Versions.appCompat}" }
|
||||
val material by lazy { "com.google.android.material:material:${Versions.material}" }
|
||||
val core by lazy { "androidx.core:core-ktx:${Versions.core}" }
|
||||
val preferences by lazy { "androidx.preference:preference-ktx:${Versions.preferences}" }
|
||||
val swipeRefreshLayout by lazy { "androidx.swiperefreshlayout:swiperefreshlayout:${Versions.swipeRefreshLayout}" }
|
||||
val recyclerView by lazy { "androidx.recyclerview:recyclerview:${Versions.recyclerView}" }
|
||||
val cardView by lazy { "androidx.cardview:cardview:${Versions.cardView}" }
|
||||
val fragment by lazy { "androidx.fragment:fragment-ktx:${Versions.fragment}" }
|
||||
|
||||
val coroutineCore by lazy { "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.coroutines}" }
|
||||
val coroutineAndroid by lazy { "org.jetbrains.kotlinx:kotlinx-coroutines-android:${Versions.coroutines}" }
|
||||
|
||||
val roomRuntime by lazy { "androidx.room:room-runtime:${Versions.room}" }
|
||||
val roomCompiler by lazy { "androidx.room:room-compiler:${Versions.room}" }
|
||||
|
||||
val gson by lazy { "com.google.code.gson:gson:${Versions.gson}" }
|
||||
|
||||
val jsoup by lazy { "org.jsoup:jsoup:${Versions.jsoup}" }
|
||||
|
||||
val acra by lazy { "ch.acra:acra:${Versions.acra}" }
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
object Versions {
|
||||
|
||||
const val desugaring = "1.1.5"
|
||||
const val gradlePlugin = "4.2.1"
|
||||
const val kotlin = "1.5.0"
|
||||
|
||||
const val appCompat = "1.4.0-alpha02"
|
||||
const val material = "1.4.0-rc01"
|
||||
const val core = "1.6.0-rc01"
|
||||
const val preferences = "1.1.1"
|
||||
const val swipeRefreshLayout = "1.2.0-alpha01"
|
||||
const val recyclerView = "1.2.1"
|
||||
const val cardView = "1.0.0"
|
||||
const val fragment = "1.3.5"
|
||||
|
||||
const val coroutines = "1.4.3"
|
||||
|
||||
const val room = "2.2.0"
|
||||
|
||||
const val gson = "2.8.6"
|
||||
|
||||
const val jsoup = "1.13.1"
|
||||
|
||||
const val acra = "4.11.1"
|
||||
|
||||
const val viewBinding = "1.0.2"
|
||||
|
||||
|
||||
|
||||
const val lifecycle = "2.3.1"
|
||||
|
||||
const val retrofit = "2.9.0"
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user