Skip to content
This repository was archived by the owner on Dec 18, 2022. It is now read-only.

Commit 610f5ec

Browse files
committed
rename modules to 'core' instead of 'android'
1 parent 0f88af0 commit 610f5ec

File tree

55 files changed

+88
-175
lines changed

Some content is hidden

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

55 files changed

+88
-175
lines changed

gradlew.bat

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

sampleapp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737

3838
dependencies {
3939
implementation fileTree(dir: "libs", include: ["*.jar"])
40-
implementation project(':topl-android-settings')
40+
implementation project(':topl-core-base')
4141
implementation project(':topl-service')
4242
implementation project(':topl-service-settings')
4343
implementation deps.kotlin.stdlib

sampleapp/src/main/java/io/matthewnelson/sampleapp/MyTorSettings.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package io.matthewnelson.sampleapp
22

3-
import io.matthewnelson.topl_android_settings.TorSettings
3+
import io.matthewnelson.topl_core_base.TorSettings
44

55
/**
66
* See [TorSettings] for comments on what is what.

settings.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
include ':topl-service-prefs'
2-
rootProject.name = 'topl-kotlin-android'
1+
rootProject.name = 'TorOnionProxyLibrary-Android'
32
include ':sampleapp'
4-
include ':topl-android'
5-
include ':topl-android-settings'
3+
include ':topl-core'
4+
include ':topl-core-base'
65
include ':topl-service'
6+
include ':topl-service-prefs'
77
include ':topl-service-settings'
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.matthewnelson.topl_android_settings
1+
package io.matthewnelson.topl_core_base
22

33
import android.content.Context
44
import androidx.test.core.app.ApplicationProvider
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="io.matthewnelson.topl_android_settings">
3-
</manifest>
2+
package="io.matthewnelson.topl_core_base" />

0 commit comments

Comments
 (0)