Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
aduryagin committed Sep 29, 2024
1 parent 4ad77bb commit 328a7cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencyResolutionManagement {
}
}

rootProject.name = "skip-revenuecat"
include(":skip-revenuecat")
rootProject.name = "skip-revenuecat-library"
include(":skip-revenuecat-library")
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ kotlin {
configure(listOf(iosX64, iosArm64, iosSimulatorArm64)) {
binaries {
framework {
baseName = "SkipRevenuecatLibrary" // Customize your framework name

// Add the XCFramework for iOS targets
// export(project(":path_to_your_xcframework"))
baseName = "SkipRevenuecatLibrary"
isStatic = true
xcFramework.add(this)
}
Expand Down Expand Up @@ -48,7 +45,7 @@ kotlin {
}

android {
namespace = "org.alekseiduriagin.skiprevenuecat"
namespace = "org.alekseiduriagin.skiprevenuecatlibrary"
compileSdk = libs.versions.android.compileSdk.get().toInt()
defaultConfig {
minSdk = libs.versions.android.minSdk.get().toInt()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest/>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package skip.revenuecat
package skip.revenuecat.library

object Singleton {
fun stringFunction(): String {
Expand Down

0 comments on commit 328a7cf

Please sign in to comment.