Skip to content

Commit 87aa57a

Browse files
committed
Initial commit
0 parents  commit 87aa57a

File tree

1,059 files changed

+175417
-0
lines changed

Some content is hidden

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

1,059 files changed

+175417
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Gradle files
2+
.gradle/
3+
build/
4+
5+
# Local configuration file (sdk path, etc)
6+
local.properties
7+
8+
# Log/OS Files
9+
*.log
10+
11+
# Android Studio generated files and folders
12+
captures/
13+
.externalNativeBuild/
14+
.cxx/
15+
*.apk
16+
output.json
17+
18+
# IntelliJ
19+
*.iml
20+
.idea/
21+
misc.xml
22+
deploymentTargetDropDown.xml
23+
render.experimental.xml
24+
25+
# Keystore files
26+
*.jks
27+
*.keystore
28+
29+
# Google Services (e.g. APIs or Firebase)
30+
google-services.json
31+
32+
# Android Profiling
33+
*.hprof
34+
35+
.DS_Store

app/build.gradle

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
apply plugin: 'com.android.application'
2+
3+
def localPropertiesFile = rootProject.file("local.properties")
4+
def localProperties = new Properties()
5+
localProperties.load(new FileInputStream(localPropertiesFile))
6+
7+
android {
8+
compileSdkVersion 33
9+
10+
defaultConfig {
11+
applicationId "com.teamcodong.pluto"
12+
minSdkVersion 21
13+
targetSdkVersion 33
14+
versionCode 100000058
15+
versionName "0.9.22"
16+
multiDexEnabled true
17+
}
18+
19+
lintOptions {
20+
disable "Instantiatable"
21+
}
22+
23+
signingConfigs {
24+
release {
25+
storeFile file(localProperties["key.store"])
26+
storePassword localProperties["key.store.password"]
27+
keyAlias localProperties['key.alias']
28+
keyPassword localProperties["key.alias.password"]
29+
}
30+
}
31+
32+
buildTypes {
33+
release {
34+
signingConfig signingConfigs.release
35+
minifyEnabled false
36+
}
37+
}
38+
39+
androidResources {
40+
noCompress = [ 'ogv', 'avi', 'mpg', 'webm', 'mkv', 'mp4', 'mp3', 'mp2', 'ogg', 'opus', 'flac', 'png', 'jpg', 'jpeg', 'webp', 'rpyc', 'rpymc', 'rpyb', ]
41+
}
42+
namespace 'com.teamcodong.pluto'
43+
}
44+
45+
dependencies {
46+
implementation project(':renpyandroid')
47+
48+
implementation 'com.google.firebase:firebase-analytics:22.0.0'
49+
implementation 'com.google.firebase:firebase-core:21.1.1'
50+
implementation 'com.google.firebase:firebase-messaging:24.0.0'
51+
implementation 'com.google.firebase:firebase-inappmessaging-display:21.0.0'
52+
implementation 'com.google.firebase:firebase-crashlytics:19.0.0'
53+
}
54+
apply plugin: 'com.google.gms.google-services'
55+
apply plugin: 'com.google.firebase.crashlytics'

app/proguard-rules.pro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
3.11 KB
Binary file not shown.
3.01 KB
Binary file not shown.

app/release/output-metadata.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.teamcodong.pluto",
8+
"variantName": "release",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"versionCode": 100000058,
15+
"versionName": "0.9.22",
16+
"outputFile": "app-release.apk"
17+
}
18+
],
19+
"elementType": "File",
20+
"baselineProfiles": [
21+
{
22+
"minApi": 28,
23+
"maxApi": 30,
24+
"baselineProfiles": [
25+
"baselineProfiles/1/app-release.dm"
26+
]
27+
},
28+
{
29+
"minApi": 31,
30+
"maxApi": 2147483647,
31+
"baselineProfiles": [
32+
"baselineProfiles/0/app-release.dm"
33+
]
34+
}
35+
],
36+
"minSdkVersionForDexing": 21
37+
}

app/src/main/AndroidManifest.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<application
5+
android:allowBackup="false"
6+
android:icon="@mipmap/ic_launcher"
7+
android:label="@string/appName"
8+
android:hardwareAccelerated="true"
9+
android:theme="@style/DefaultTheme">
10+
11+
<meta-data android:name="com.google.firebase.messaging.default_notification_icon"
12+
android:resource="@drawable/ic_notification" />
13+
14+
<meta-data android:name="com.google.android.gms.games.APP_ID"
15+
android:value="@string/app_id" />
16+
17+
<meta-data android:name="com.google.android.gms.version"
18+
android:value="@integer/google_play_services_version"/>
19+
20+
<activity
21+
android:name="org.renpy.android.PythonSDLActivity"
22+
android:label="@string/iconName"
23+
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
24+
android:launchMode="singleTop"
25+
android:exported="true"
26+
android:screenOrientation="sensorLandscape">
27+
28+
29+
<intent-filter>
30+
<action android:name="android.intent.action.MAIN" />
31+
<category android:name="android.intent.category.LAUNCHER" />
32+
</intent-filter>
33+
34+
35+
</activity>
36+
37+
</application>
38+
39+
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
40+
41+
<uses-permission android:name="android.permission.WAKE_LOCK" />
42+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
43+
44+
<uses-permission android:name="android.permission.VIBRATE" />
45+
<uses-permission android:name="android.permission.INTERNET" />
46+
47+
</manifest>
90.4 KB

app/src/main/assets/private.mp3

3.25 MB
Binary file not shown.
439 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)