mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 19:36:24 +00:00
Fix android build dependency repos down
This commit is contained in:
parent
c89391cfd0
commit
5c42b5da71
26
.github/workflows/android-build.yml
vendored
26
.github/workflows/android-build.yml
vendored
@ -41,6 +41,10 @@ jobs:
|
|||||||
cd mobile
|
cd mobile
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
|
- name: 'Patch modules' # react-native-tor and react-native-encrypted-storage rely on deprecated jcenter repositories. We patch the modules temporarily
|
||||||
|
run: |
|
||||||
|
cd mobile
|
||||||
|
cp -r patch_modules/* node_modules/
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
@ -110,14 +114,14 @@ jobs:
|
|||||||
asset_name: robosats-${{ steps.commit.outputs.short }}.apk
|
asset_name: robosats-${{ steps.commit.outputs.short }}.apk
|
||||||
asset_content_type: application/apk
|
asset_content_type: application/apk
|
||||||
|
|
||||||
- name: 'Upload Pre-release APK Debug Asset'
|
# - name: 'Upload Pre-release APK Debug Asset'
|
||||||
id: upload-debug-apk-asset
|
# id: upload-debug-apk-asset
|
||||||
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
|
# if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
|
||||||
uses: actions/upload-release-asset@v1
|
# uses: actions/upload-release-asset@v1
|
||||||
env:
|
# env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
# with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
# upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
asset_path: ./mobile/android/app/build/outputs/apk/debug/app-debug.apk
|
# asset_path: ./mobile/android/app/build/outputs/apk/debug/app-debug.apk
|
||||||
asset_name: robosats-debug-${{ steps.commit.outputs.short }}.apk
|
# asset_name: robosats-debug-${{ steps.commit.outputs.short }}.apk
|
||||||
asset_content_type: application/apk
|
# asset_content_type: application/apk
|
||||||
|
@ -0,0 +1,133 @@
|
|||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'com.android.library'
|
||||||
|
|
||||||
|
def getExtOrDefault(name) {
|
||||||
|
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['EncryptedStorage_' + name]
|
||||||
|
}
|
||||||
|
|
||||||
|
def getExtOrIntegerDefault(name) {
|
||||||
|
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['EncryptedStorage_' + name]).toInteger()
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
||||||
|
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion 21
|
||||||
|
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
||||||
|
versionCode 50
|
||||||
|
versionName "4.0.1"
|
||||||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lintOptions {
|
||||||
|
abortOnError false
|
||||||
|
disable 'GradleCompatible'
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
|
||||||
|
def found = false
|
||||||
|
def defaultDir = null
|
||||||
|
def androidSourcesName = 'React Native sources'
|
||||||
|
|
||||||
|
if (rootProject.ext.has('reactNativeAndroidRoot')) {
|
||||||
|
defaultDir = rootProject.ext.get('reactNativeAndroidRoot')
|
||||||
|
} else {
|
||||||
|
defaultDir = new File(
|
||||||
|
projectDir,
|
||||||
|
'/../../../node_modules/react-native/android'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (defaultDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url defaultDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${defaultDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
} else {
|
||||||
|
def parentDir = rootProject.projectDir
|
||||||
|
|
||||||
|
1.upto(5, {
|
||||||
|
if (found) return true
|
||||||
|
parentDir = parentDir.parentFile
|
||||||
|
|
||||||
|
def androidSourcesDir = new File(
|
||||||
|
parentDir,
|
||||||
|
'node_modules/react-native'
|
||||||
|
)
|
||||||
|
|
||||||
|
def androidPrebuiltBinaryDir = new File(
|
||||||
|
parentDir,
|
||||||
|
'node_modules/react-native/android'
|
||||||
|
)
|
||||||
|
|
||||||
|
if (androidPrebuiltBinaryDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url androidPrebuiltBinaryDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${androidPrebuiltBinaryDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
} else if (androidSourcesDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url androidSourcesDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${androidSourcesDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found) {
|
||||||
|
throw new GradleException(
|
||||||
|
"${project.name}: unable to locate React Native android sources. " +
|
||||||
|
"Ensure you have you installed React Native as a dependency in your project and try again."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// noinspection GradleDynamicVersion
|
||||||
|
api 'com.facebook.react:react-native:+'
|
||||||
|
|
||||||
|
implementation "androidx.security:security-crypto:1.1.0-alpha03"
|
||||||
|
|
||||||
|
testImplementation 'junit:junit:4.13.1'
|
||||||
|
|
||||||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
||||||
|
//noinspection GradleDependency
|
||||||
|
androidTestImplementation 'org.mockito:mockito-android:3.4.6'
|
||||||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
|
}
|
132
mobile/patch_modules/react-native-tor/android/build.gradle
Normal file
132
mobile/patch_modules/react-native-tor/android/build.gradle
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
buildscript {
|
||||||
|
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
||||||
|
def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['Tor_kotlinVersion']
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
||||||
|
// noinspection DifferentKotlinGradleVersion
|
||||||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'com.android.library'
|
||||||
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
|
def getExtOrDefault(name) {
|
||||||
|
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['Tor_' + name]
|
||||||
|
}
|
||||||
|
|
||||||
|
def getExtOrIntegerDefault(name) {
|
||||||
|
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['Tor_' + name]).toInteger()
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
||||||
|
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion rootProject.ext.has('minSdkVersion') ? rootProject.ext.minSdkVersion : 16
|
||||||
|
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
||||||
|
versionCode 1
|
||||||
|
versionName "1.0"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lintOptions {
|
||||||
|
disable 'GradleCompatible'
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
|
||||||
|
def found = false
|
||||||
|
def defaultDir = null
|
||||||
|
def androidSourcesName = 'React Native sources'
|
||||||
|
|
||||||
|
if (rootProject.ext.has('reactNativeAndroidRoot')) {
|
||||||
|
defaultDir = rootProject.ext.get('reactNativeAndroidRoot')
|
||||||
|
} else {
|
||||||
|
defaultDir = new File(
|
||||||
|
projectDir,
|
||||||
|
'/../../../node_modules/react-native/android'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (defaultDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url defaultDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${defaultDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
} else {
|
||||||
|
def parentDir = rootProject.projectDir
|
||||||
|
|
||||||
|
1.upto(5, {
|
||||||
|
if (found) return true
|
||||||
|
parentDir = parentDir.parentFile
|
||||||
|
|
||||||
|
def androidSourcesDir = new File(
|
||||||
|
parentDir,
|
||||||
|
'node_modules/react-native'
|
||||||
|
)
|
||||||
|
|
||||||
|
def androidPrebuiltBinaryDir = new File(
|
||||||
|
parentDir,
|
||||||
|
'node_modules/react-native/android'
|
||||||
|
)
|
||||||
|
|
||||||
|
if (androidPrebuiltBinaryDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url androidPrebuiltBinaryDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${androidPrebuiltBinaryDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
} else if (androidSourcesDir.exists()) {
|
||||||
|
maven {
|
||||||
|
url androidSourcesDir.toString()
|
||||||
|
name androidSourcesName
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(":${project.name}:reactNativeAndroidRoot ${androidSourcesDir.canonicalPath}")
|
||||||
|
found = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found) {
|
||||||
|
throw new GradleException(
|
||||||
|
"${project.name}: unable to locate React Native android sources. " +
|
||||||
|
"Ensure you have you installed React Native as a dependency in your project and try again."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def kotlin_version = getExtOrDefault('kotlinVersion')
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// noinspection GradleDynamicVersion
|
||||||
|
api 'com.facebook.react:react-native:+'
|
||||||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||||
|
compileOnly files('libs/sifir_android.aar')
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user