Initial commit: Star of Words Unity project
Snapshot of the existing Unity 6 language-learning word game before any refactoring. Adds Unity .gitignore and .gitattributes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
commit
ecb1c9edea
1455 changed files with 933295 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.unity.ads.plugin">
|
||||
<uses-sdk android:minSdkVersion="23" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<application>
|
||||
<uses-library android:required="false" android:name="org.apache.http.legacy" />
|
||||
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-9882956647539723~7762335322" />
|
||||
<meta-data android:name="com.google.unity.ads.UNITY_VERSION" android:value="6000.5.0b11" />
|
||||
</application>
|
||||
</manifest>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
configurations.configureEach {
|
||||
exclude group: "com.google.android.gms", module: "play-services-ads"
|
||||
exclude group: "com.google.android.gms", module: "play-services-ads-lite"
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
configurations.configureEach {
|
||||
resolutionStrategy {
|
||||
force 'androidx.webkit:webkit:1.12.0'
|
||||
force 'com.google.errorprone:error_prone_annotations:2.23.0'
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
android {
|
||||
packagingOptions {
|
||||
pickFirst "META-INF/kotlinx_coroutines_core.version"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
target=android-31
|
||||
android.library=true
|
||||
Loading…
Add table
Add a link
Reference in a new issue