Add initial iOS project structure for Vegas Blackjack
- Created SplashScreenBackground image asset with multiple scales. - Added image file for SplashScreenBackground. - Initialized Info.plist with essential app configuration. - Created SplashScreen storyboard for launch screen design. - Added Expo.plist for update configurations. - Created bridging header for Swift compatibility. - Added entitlements for in-app payments. - Implemented main entry point for the application. - Added a placeholder Swift file for native module compatibility.
This commit is contained in:
19
android/react-settings-plugin/build.gradle.kts
Normal file
19
android/react-settings-plugin/build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.9.24"
|
||||
id("java-gradle-plugin")
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
create("reactSettingsPlugin") {
|
||||
id = "com.facebook.react.settings"
|
||||
implementationClass = "expo.plugins.ReactSettingsPlugin"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user