Skip to content

Commit 30f4f1d

Browse files
committed
Prepared for publishing
1 parent 2abccc7 commit 30f4f1d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+348
-279
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ google-services.json
4949
freeline.py
5050
freeline/
5151
freeline_project_description.json
52+
5253
.idea/markdown-exported-files.xml
5354
.idea/misc.xml
5455
.idea/

aar/taolog-debug.aar

4.03 KB
Binary file not shown.

demo/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ kotlin {
3434

3535
dependencies {
3636
implementation(fileTree("libs") { include("*.jar") })
37-
implementation(project(":lib"))
37+
implementation(project(":logger"))
3838
implementation(libs.androidx.appcompat)
3939
implementation(libs.androidx.constraintlayout)
4040
implementation(libs.google.material)

demo/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
33

44
<application
5-
android:name=".AppLogDemoKotlin"
5+
android:name=".AppLogDemo"
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"

demo/src/main/java/ua/at/tsvetkov/demo/AppLogDemoKotlin.kt renamed to demo/src/main/java/ua/at/tsvetkov/demo/AppLogDemo.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@
3232
package ua.at.tsvetkov.demo
3333

3434
import android.app.Application
35-
import ua.at.tsvetkov.util.BuildConfig
3635
import ua.at.tsvetkov.util.logger.Log
3736
import ua.at.tsvetkov.util.logger.LogComponents
3837

3938
/**
4039
* Created by Alexandr Tsvetkov on 09.17.2020.
4140
*/
42-
class AppLogDemoKotlin : Application() {
41+
class AppLogDemo : Application() {
4342

4443
override fun onCreate() {
4544
super.onCreate()

demo/src/main/java/ua/at/tsvetkov/demo/AppTaoLogDemo.kt

Lines changed: 0 additions & 53 deletions
This file was deleted.

gradle/libs.versions.toml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,30 @@ compileSdk = "36"
44
targetSdk = "36"
55
minSdk = "26"
66

7+
# Publishing
8+
mavenPublishPlugin = "0.25.3"
9+
libGroup = "ua.at.tsvetkov"
10+
libArtifact = "taolog"
11+
libVersion = "2.2.69"
12+
713
# Plugins
8-
agp = "8.11.1"
9-
kotlin = "2.2.0"
10-
androidx-core-ktx = "1.16.0"
11-
androidx-work-runtime-ktx = "2.10.2"
14+
agp = "8.12.2"
15+
kotlin = "2.2.10"
1216

1317
# AndroidX
14-
core_ktx = "1.16.0"
18+
core_ktx = "1.17.0"
1519
appcompat = "1.7.1"
1620
constraintlayout = "2.2.1"
1721
recyclerview = "1.4.0"
1822
cardview = "1.0.0"
1923
material = "1.12.0"
20-
navigation = "2.9.1"
21-
lifecycle = "2.9.1"
24+
navigation = "2.9.3"
25+
lifecycle = "2.9.3"
2226
activity = "1.10.1"
27+
okhttp = "5.1.0"
2328

2429
[libraries]
30+
2531
# Google
2632
google-material = { module = "com.google.android.material:material", version.ref = "material" }
2733

@@ -38,7 +44,11 @@ androidx-navigation-fragment = { module = "androidx.navigation:navigation-fragme
3844
androidx-navigation-fragment-ktx = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "navigation" }
3945
androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
4046

47+
# OkHttp
48+
okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
49+
okhttp-logging-interceptor = { group = "com.squareup.okhttp3", name = "logging-interceptor", version.ref = "okhttp" }
50+
4151
[plugins]
4252
android-application = { id = "com.android.application", version.ref = "agp" }
4353
android-library = { id = "com.android.library", version.ref = "agp" }
44-
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
54+
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }

lib/build.gradle.kts

Lines changed: 0 additions & 209 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)