Add files via upload
This commit is contained in:
@@ -0,0 +1,171 @@
|
||||
apply plugin: "com.android.application"
|
||||
apply plugin: "org.jetbrains.kotlin.android"
|
||||
apply plugin: "com.facebook.react"
|
||||
|
||||
import com.android.build.OutputFile
|
||||
import groovy.json.JsonSlurper
|
||||
|
||||
/**
|
||||
* This is the configuration block to customize your React Native Android app.
|
||||
* By default you don't need to apply any configuration, just uncomment the lines you need.
|
||||
*/
|
||||
react {
|
||||
/* Folders */
|
||||
// The root of your project, i.e. where "package.json" lives. Default is '../..'
|
||||
// root = file("../../")
|
||||
// The folder where the react-native NPM package is. Default is ../../node_modules/react-native
|
||||
// reactNativeDir = file("../../node_modules/react-native")
|
||||
// The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
|
||||
// codegenDir = file("../../node_modules/@react-native/codegen")
|
||||
// The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
|
||||
// cliFile = file("../../node_modules/react-native/cli.js")
|
||||
|
||||
/* Variants */
|
||||
// The list of variants to that are debuggable. For those we're going to
|
||||
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
|
||||
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
|
||||
// debuggableVariants = ["liteDebug", "prodDebug"]
|
||||
|
||||
/* Bundling */
|
||||
// A list containing the node command and its flags. Default is just 'node'.
|
||||
// nodeExecutableAndArgs = ["node"]
|
||||
//
|
||||
// The command to run when bundling. By default is 'bundle'
|
||||
// bundleCommand = "ram-bundle"
|
||||
//
|
||||
// The path to the CLI configuration file. Default is empty.
|
||||
// bundleConfig = file(../rn-cli.config.js)
|
||||
//
|
||||
// The name of the generated asset file containing your JS bundle
|
||||
// bundleAssetName = "MyApplication.android.bundle"
|
||||
//
|
||||
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
|
||||
// entryFile = file("../js/MyApplication.android.js")
|
||||
//
|
||||
// A list of extra flags to pass to the 'bundle' commands.
|
||||
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
|
||||
// extraPackagerArgs = []
|
||||
|
||||
/* Hermes Commands */
|
||||
// The hermes compiler command to run. By default it is 'hermesc'
|
||||
// hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
|
||||
//
|
||||
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
|
||||
// hermesFlags = ["-O", "-output-source-map"]
|
||||
|
||||
/* Autolinking */
|
||||
autolinkLibrariesWithApp()
|
||||
|
||||
//
|
||||
// Added by install-expo-modules
|
||||
entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", rootDir.getAbsoluteFile().getParentFile().getAbsolutePath(), "android", "absolute"].execute(null, rootDir).text.trim())
|
||||
cliFile = new File(["node", "--print", "require.resolve('@expo/cli')"].execute(null, rootDir).text.trim())
|
||||
bundleCommand = "export:embed"
|
||||
}
|
||||
|
||||
/**
|
||||
* Set this to true to Run Proguard on Release builds to minify the Java bytecode.
|
||||
*/
|
||||
def enableProguardInReleaseBuilds = false
|
||||
|
||||
/**
|
||||
* The preferred build flavor of JavaScriptCore (JSC)
|
||||
*/
|
||||
def jscFlavor = 'org.webkit:android-jsc:+'
|
||||
|
||||
// !! Add lines
|
||||
def keystoreProperties = new Properties()
|
||||
def keystorePropertiesFile = rootProject.file('keystore.properties')
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
}
|
||||
|
||||
static def getVersion() {
|
||||
def inputFile = new File("../package.json")
|
||||
def packageJson = new JsonSlurper().parseText(inputFile.text)
|
||||
return packageJson["version"]
|
||||
}
|
||||
|
||||
def appVersion = getVersion()
|
||||
def appVersionCode = 400011
|
||||
|
||||
android {
|
||||
ndkVersion rootProject.ext.ndkVersion
|
||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||
compileSdk rootProject.ext.compileSdkVersion
|
||||
|
||||
namespace "fun.upup.musicfree"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "fun.upup.musicfree"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode appVersionCode
|
||||
versionName appVersion
|
||||
}
|
||||
|
||||
// ==================== 彻底重写的签名配置 ====================
|
||||
signingConfigs {
|
||||
debug {
|
||||
storeFile file('ikunshare.keystore')
|
||||
storePassword '@Ikun2.0.1.2'
|
||||
keyAlias 'ikunshare'
|
||||
keyPassword '@Ikun2.0.1.2'
|
||||
}
|
||||
|
||||
release {
|
||||
// 安全获取属性(变量名故意改成不和属性冲突)
|
||||
def keystoreFile = project.findProperty("FONGMIBOX_STORE_FILE") ?: ""
|
||||
def keystorePass = project.findProperty("FONGMIBOX_STORE_PASSWORD") ?: ""
|
||||
def keystoreAlias = project.findProperty("FONGMIBOX_KEY_ALIAS") ?: ""
|
||||
def keystoreKeyPass = project.findProperty("FONGMIBOX_KEY_PASSWORD") ?: ""
|
||||
|
||||
// 检查是否注入成功
|
||||
if (!keystoreFile || !keystorePass || !keystoreAlias || !keystoreKeyPass) {
|
||||
throw new GradleException("TVBoxOSC signing properties missing in android/gradle.properties! Check workflow injection.")
|
||||
}
|
||||
|
||||
// 显式赋值,避免任何 DSL 歧义
|
||||
storeFile = file(keystoreFile)
|
||||
storePassword = keystorePass
|
||||
keyAlias = keystoreAlias
|
||||
keyPassword = keystoreKeyPass
|
||||
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
enableV3Signing true
|
||||
enableV4Signing true
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
debug {
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
minifyEnabled enableProguardInReleaseBuilds
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
}
|
||||
}
|
||||
// ===========================================================
|
||||
}
|
||||
|
||||
// dependencies 块必须放在 android { } 闭合之后
|
||||
dependencies {
|
||||
// The version of react-native is set by the React Native Gradle Plugin
|
||||
implementation("com.facebook.react:react-android")
|
||||
|
||||
if (hermesEnabled.toBoolean()) {
|
||||
implementation("com.facebook.react:hermes-android")
|
||||
} else {
|
||||
implementation jscFlavor
|
||||
}
|
||||
|
||||
// !! Add lines
|
||||
implementation project(':react-native-fs')
|
||||
implementation 'com.facebook.fresco:animated-gif:2.5.0'
|
||||
// https://mvnrepository.com/artifact/net.jthink/jaudiotagger
|
||||
implementation 'net.jthink:jaudiotagger:2.2.5'
|
||||
implementation 'androidx.core:core-splashscreen:1.0.0'
|
||||
}
|
||||
Reference in New Issue
Block a user