i-8: Rename app package to org.tle (#10)

Co-authored-by: Emil Simeonov <emil@theliberatededge.org>
Reviewed-on: #10
This commit is contained in:
emil 2025-02-16 02:02:33 +00:00
parent e53b73150f
commit b986cd98d9
13 changed files with 20 additions and 20 deletions

View File

@ -40,7 +40,7 @@ kotlin {
}
android {
namespace = "com.tle.astrologylibrary"
Re namespace = "org.tle.astrologylibrary"
compileSdk = 35
defaultConfig {
minSdk = 24
@ -52,6 +52,6 @@ android {
}
allOpen {
annotation("com.tle.astrologylibrary.OpenForMokkery")
annotation("org.tle.astrologylibrary.OpenForMokkery")
// annotations("com.another.Annotation", "com.third.Annotation")
}

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
class AndroidPlatform : Platform {
override val name: String = "Android ${android.os.Build.VERSION.SDK_INT}"

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
import org.junit.Assert.assertTrue
import org.junit.Test

View File

@ -1,3 +0,0 @@
package com.tle.astrologylibrary
annotation class OpenForMokkery()

View File

@ -1,7 +0,0 @@
package com.tle.astrologylibrary
interface Platform {
val name: String
}
expect fun getPlatform(): Platform

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
class Greeting {
private val platform: Platform = getPlatform()

View File

@ -0,0 +1,3 @@
package org.tle.astrologylibrary
annotation class OpenForMokkery()

View File

@ -0,0 +1,7 @@
package org.tle.astrologylibrary
interface Platform {
val name: String
}
expect fun getPlatform(): Platform

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
@OpenForMokkery
class A constructor()

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
import dev.mokkery.mock
import kotlin.test.Test

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
import kotlin.test.Test
import kotlin.test.assertTrue

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
import platform.UIKit.UIDevice

View File

@ -1,4 +1,4 @@
package com.tle.astrologylibrary
package org.tle.astrologylibrary
import kotlin.test.Test
import kotlin.test.assertTrue