upgrade `react-native` to 0.73.5 (#18563)
fixes #18291 ## Summary Changes worth mentioning are : - More hacks/patches - Force app to use `Java 17` everywhere to compile `kotlin,java` - `gems` were upgraded after a long time - `aapt2` was bumped to `8.1.1` - `metro` is now at `0.80.4` - `xcbeautify` was bumped to `1.4.0` - `@react-native-community/clipboard` lib was replaced with `@react-native-clipboard/clipboard` - `react-native-dialogs` lib was upgraded to `1.1.2` - `react-native-gesture-handler` lib was upgraded to `2.14.1` - `react-native-navigation` was upgraded to `7.37.2` ## Platforms - Android - iOS
This commit is contained in:
parent
6f07e8022e
commit
a716f4e435
|
@ -138,11 +138,16 @@ def getEnvOrConfig = { varName ->
|
||||||
android {
|
android {
|
||||||
ndkVersion rootProject.ext.ndkVersion
|
ndkVersion rootProject.ext.ndkVersion
|
||||||
|
|
||||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||||
|
compileSdk rootProject.ext.compileSdkVersion
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = JavaVersion.VERSION_17
|
||||||
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_11
|
sourceCompatibility JavaVersion.VERSION_17
|
||||||
targetCompatibility JavaVersion.VERSION_11
|
targetCompatibility JavaVersion.VERSION_17
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace "im.status.ethereum"
|
namespace "im.status.ethereum"
|
||||||
|
@ -286,6 +291,7 @@ dependencies {
|
||||||
implementation("com.facebook.fresco:animated-gif:2.5.0")
|
implementation("com.facebook.fresco:animated-gif:2.5.0")
|
||||||
implementation("com.squareup.okhttp3:okhttp-tls:4.9.2")
|
implementation("com.squareup.okhttp3:okhttp-tls:4.9.2")
|
||||||
implementation("com.google.prefab:cli:2.0.0")
|
implementation("com.google.prefab:cli:2.0.0")
|
||||||
|
implementation("com.android.tools.build:aapt2:8.1.1-10154469")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,5 @@
|
||||||
<!-- Remove licensing permission since we don't license our app and it blocks F-Droid submissions. -->
|
<!-- Remove licensing permission since we don't license our app and it blocks F-Droid submissions. -->
|
||||||
<uses-permission tools:node="remove" android:name="com.android.vending.CHECK_LICENSE"/>
|
<uses-permission tools:node="remove" android:name="com.android.vending.CHECK_LICENSE"/>
|
||||||
|
|
||||||
<application tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" android:usesCleartextTraffic="true" >
|
<application tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" android:usesCleartextTraffic="true" />
|
||||||
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
|
|
||||||
</application>
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
<!-- non-dangerous permissions -->
|
<!-- non-dangerous permissions -->
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/>
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.NFC"/>
|
<uses-permission android:name="android.permission.NFC"/>
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
@ -74,7 +75,13 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/>
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/>
|
||||||
<service android:name="im.status.ethereum.pushnotifications.ForegroundService"></service>
|
<service
|
||||||
|
android:name="im.status.ethereum.pushnotifications.ForegroundService"
|
||||||
|
android:foregroundServiceType="specialUse">
|
||||||
|
<property
|
||||||
|
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
||||||
|
android:value="local notifications"/>
|
||||||
|
</service>
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.core.content.FileProvider"
|
android:name="androidx.core.content.FileProvider"
|
||||||
android:authorities="${applicationId}.provider"
|
android:authorities="${applicationId}.provider"
|
||||||
|
|
|
@ -99,7 +99,7 @@ class MainActivity : NavigationActivity(), ActivityCompat.OnRequestPermissionsRe
|
||||||
|
|
||||||
private fun tryToEmit(eventName: String, event: WritableMap) {
|
private fun tryToEmit(eventName: String, event: WritableMap) {
|
||||||
try {
|
try {
|
||||||
(getApplication() as MainApplication).getReactNativeHost()
|
(getApplication() as MainApplication).reactNativeHost
|
||||||
.getReactInstanceManager()
|
.getReactInstanceManager()
|
||||||
.getCurrentReactContext()
|
.getCurrentReactContext()
|
||||||
?.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter::class.java)
|
?.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter::class.java)
|
||||||
|
|
|
@ -25,14 +25,13 @@ class MainApplication : NavigationApplication() {
|
||||||
return BuildConfig.DEBUG
|
return BuildConfig.DEBUG
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getPackages(): List<ReactPackage> {
|
override fun getPackages(): List<ReactPackage> =
|
||||||
val statusPackage = StatusPackage(RootUtil.isDeviceRooted())
|
PackageList(this).packages.apply {
|
||||||
val packages = PackageList(this).getPackages()
|
// Packages that cannot be autolinked yet can be added manually here
|
||||||
packages.add(statusPackage)
|
add(StatusPackage(RootUtil.isDeviceRooted()))
|
||||||
packages.add(RNStatusKeycardPackage())
|
add(RNStatusKeycardPackage())
|
||||||
packages.add(PushNotificationPackage())
|
add(PushNotificationPackage())
|
||||||
packages.add(BlurViewPackage())
|
add(BlurViewPackage())
|
||||||
return packages
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getJSMainModuleName(): String = "index"
|
override fun getJSMainModuleName(): String = "index"
|
||||||
|
@ -42,9 +41,8 @@ class MainApplication : NavigationApplication() {
|
||||||
override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
|
override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getReactNativeHost(): ReactNativeHost {
|
override val reactNativeHost: ReactNativeHost
|
||||||
return mReactNativeHost
|
get() = mReactNativeHost
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
|
|
|
@ -15,6 +15,8 @@ ext {
|
||||||
supportLibVersion = project.supportLibVersion
|
supportLibVersion = project.supportLibVersion
|
||||||
gradlePluginVersion = project.gradlePluginVersion
|
gradlePluginVersion = project.gradlePluginVersion
|
||||||
kotlinVersion = project.kotlinPluginVersion
|
kotlinVersion = project.kotlinPluginVersion
|
||||||
|
kotlinPluginVersion = project.kotlinPluginVersion
|
||||||
|
kotlinToolsVersion = project.kotlinPluginVersion
|
||||||
ndkVersion = "25.2.9519653"
|
ndkVersion = "25.2.9519653"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,6 +30,7 @@ buildscript {
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${project.ext.kotlinPluginVersion}"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${project.ext.kotlinPluginVersion}"
|
||||||
classpath("com.android.tools.build:gradle")
|
classpath("com.android.tools.build:gradle")
|
||||||
classpath("com.facebook.react:react-native-gradle-plugin")
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
||||||
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,6 +49,8 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply plugin: "com.facebook.react.rootproject"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
beforeEvaluate {
|
beforeEvaluate {
|
||||||
if (System.env.STATUS_GO_ANDROID_LIBDIR == null || System.env.STATUS_GO_ANDROID_LIBDIR == "") {
|
if (System.env.STATUS_GO_ANDROID_LIBDIR == null || System.env.STATUS_GO_ANDROID_LIBDIR == "") {
|
||||||
|
|
|
@ -22,9 +22,9 @@
|
||||||
|
|
||||||
# Version requirements used throughout the Gradle scripts
|
# Version requirements used throughout the Gradle scripts
|
||||||
minSdkVersion=24
|
minSdkVersion=24
|
||||||
compileSdkVersion=33
|
compileSdkVersion=34
|
||||||
targetSdkVersion=33
|
targetSdkVersion=34
|
||||||
buildToolsVersion=33.0.0
|
buildToolsVersion=34.0.0
|
||||||
supportLibVersion=28.0.0
|
supportLibVersion=28.0.0
|
||||||
# This should match version from nix/pkgs/aapt2/default.nix
|
# This should match version from nix/pkgs/aapt2/default.nix
|
||||||
gradlePluginVersion=7.4.2
|
gradlePluginVersion=7.4.2
|
||||||
|
|
|
@ -1,19 +1,4 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
presets: ['module:metro-react-native-babel-preset'],
|
presets: ['module:@react-native/babel-preset'],
|
||||||
plugins: ['react-native-reanimated/plugin', '@babel/plugin-transform-named-capturing-groups-regex'],
|
plugins: ['react-native-reanimated/plugin', '@babel/plugin-transform-named-capturing-groups-regex'],
|
||||||
env: {
|
|
||||||
test: {
|
|
||||||
presets: [
|
|
||||||
'@babel/preset-react',
|
|
||||||
[
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
targets: {
|
|
||||||
node: 'current',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
|
||||||
gem 'fastlane', '>= 2.131.0'
|
gem 'fastlane', '>= 2.131.0'
|
||||||
|
|
|
@ -3,25 +3,30 @@ GEM
|
||||||
specs:
|
specs:
|
||||||
CFPropertyList (3.0.6)
|
CFPropertyList (3.0.6)
|
||||||
rexml
|
rexml
|
||||||
addressable (2.8.4)
|
activesupport (7.0.8)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 1.6, < 2)
|
||||||
|
minitest (>= 5.1)
|
||||||
|
tzinfo (~> 2.0)
|
||||||
|
addressable (2.8.6)
|
||||||
public_suffix (>= 2.0.2, < 6.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
artifactory (3.0.15)
|
artifactory (3.0.15)
|
||||||
atomos (0.1.3)
|
atomos (0.1.3)
|
||||||
aws-eventstream (1.2.0)
|
aws-eventstream (1.3.0)
|
||||||
aws-partitions (1.768.0)
|
aws-partitions (1.872.0)
|
||||||
aws-sdk-core (3.173.0)
|
aws-sdk-core (3.190.1)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.3.0)
|
||||||
aws-partitions (~> 1, >= 1.651.0)
|
aws-partitions (~> 1, >= 1.651.0)
|
||||||
aws-sigv4 (~> 1.5)
|
aws-sigv4 (~> 1.8)
|
||||||
jmespath (~> 1, >= 1.6.1)
|
jmespath (~> 1, >= 1.6.1)
|
||||||
aws-sdk-kms (1.64.0)
|
aws-sdk-kms (1.75.0)
|
||||||
aws-sdk-core (~> 3, >= 3.165.0)
|
aws-sdk-core (~> 3, >= 3.188.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sdk-s3 (1.122.0)
|
aws-sdk-s3 (1.141.0)
|
||||||
aws-sdk-core (~> 3, >= 3.165.0)
|
aws-sdk-core (~> 3, >= 3.189.0)
|
||||||
aws-sdk-kms (~> 1)
|
aws-sdk-kms (~> 1)
|
||||||
aws-sigv4 (~> 1.4)
|
aws-sigv4 (~> 1.8)
|
||||||
aws-sigv4 (1.5.2)
|
aws-sigv4 (1.8.0)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
babosa (1.0.4)
|
babosa (1.0.4)
|
||||||
claide (1.1.0)
|
claide (1.1.0)
|
||||||
|
@ -29,14 +34,14 @@ GEM
|
||||||
colored2 (3.1.2)
|
colored2 (3.1.2)
|
||||||
commander (4.6.0)
|
commander (4.6.0)
|
||||||
highline (~> 2.0.0)
|
highline (~> 2.0.0)
|
||||||
|
concurrent-ruby (1.2.2)
|
||||||
declarative (0.0.20)
|
declarative (0.0.20)
|
||||||
digest-crc (0.6.4)
|
digest-crc (0.6.5)
|
||||||
rake (>= 12.0.0, < 14.0.0)
|
rake (>= 12.0.0, < 14.0.0)
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.6.20231109)
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
|
||||||
dotenv (2.8.1)
|
dotenv (2.8.1)
|
||||||
emoji_regex (3.2.3)
|
emoji_regex (3.2.3)
|
||||||
excon (0.99.0)
|
excon (0.108.0)
|
||||||
faraday (1.10.3)
|
faraday (1.10.3)
|
||||||
faraday-em_http (~> 1.0)
|
faraday-em_http (~> 1.0)
|
||||||
faraday-em_synchrony (~> 1.0)
|
faraday-em_synchrony (~> 1.0)
|
||||||
|
@ -66,7 +71,7 @@ GEM
|
||||||
faraday_middleware (1.2.0)
|
faraday_middleware (1.2.0)
|
||||||
faraday (~> 1.0)
|
faraday (~> 1.0)
|
||||||
fastimage (2.2.7)
|
fastimage (2.2.7)
|
||||||
fastlane (2.212.2)
|
fastlane (2.217.0)
|
||||||
CFPropertyList (>= 2.3, < 4.0.0)
|
CFPropertyList (>= 2.3, < 4.0.0)
|
||||||
addressable (>= 2.8, < 3.0.0)
|
addressable (>= 2.8, < 3.0.0)
|
||||||
artifactory (~> 3.0)
|
artifactory (~> 3.0)
|
||||||
|
@ -87,10 +92,11 @@ GEM
|
||||||
google-apis-playcustomapp_v1 (~> 0.1)
|
google-apis-playcustomapp_v1 (~> 0.1)
|
||||||
google-cloud-storage (~> 1.31)
|
google-cloud-storage (~> 1.31)
|
||||||
highline (~> 2.0)
|
highline (~> 2.0)
|
||||||
|
http-cookie (~> 1.0.5)
|
||||||
json (< 3.0.0)
|
json (< 3.0.0)
|
||||||
jwt (>= 2.1.0, < 3)
|
jwt (>= 2.1.0, < 3)
|
||||||
mini_magick (>= 4.9.4, < 5.0.0)
|
mini_magick (>= 4.9.4, < 5.0.0)
|
||||||
multipart-post (~> 2.0.0)
|
multipart-post (>= 2.0.0, < 3.0.0)
|
||||||
naturally (~> 2.2)
|
naturally (~> 2.2)
|
||||||
optparse (~> 0.1.1)
|
optparse (~> 0.1.1)
|
||||||
plist (>= 3.1.0, < 4.0.0)
|
plist (>= 3.1.0, < 4.0.0)
|
||||||
|
@ -98,7 +104,7 @@ GEM
|
||||||
security (= 0.1.3)
|
security (= 0.1.3)
|
||||||
simctl (~> 1.6.3)
|
simctl (~> 1.6.3)
|
||||||
terminal-notifier (>= 2.0.0, < 3.0.0)
|
terminal-notifier (>= 2.0.0, < 3.0.0)
|
||||||
terminal-table (>= 1.4.5, < 2.0.0)
|
terminal-table (~> 3)
|
||||||
tty-screen (>= 0.6.3, < 1.0.0)
|
tty-screen (>= 0.6.3, < 1.0.0)
|
||||||
tty-spinner (>= 0.8.0, < 1.0.0)
|
tty-spinner (>= 0.8.0, < 1.0.0)
|
||||||
word_wrap (~> 1.0.0)
|
word_wrap (~> 1.0.0)
|
||||||
|
@ -106,9 +112,9 @@ GEM
|
||||||
xcpretty (~> 0.3.0)
|
xcpretty (~> 0.3.0)
|
||||||
xcpretty-travis-formatter (>= 0.0.3)
|
xcpretty-travis-formatter (>= 0.0.3)
|
||||||
gh_inspector (1.1.3)
|
gh_inspector (1.1.3)
|
||||||
google-apis-androidpublisher_v3 (0.42.0)
|
google-apis-androidpublisher_v3 (0.54.0)
|
||||||
google-apis-core (>= 0.11.0, < 2.a)
|
google-apis-core (>= 0.11.0, < 2.a)
|
||||||
google-apis-core (0.11.0)
|
google-apis-core (0.11.2)
|
||||||
addressable (~> 2.5, >= 2.5.1)
|
addressable (~> 2.5, >= 2.5.1)
|
||||||
googleauth (>= 0.16.2, < 2.a)
|
googleauth (>= 0.16.2, < 2.a)
|
||||||
httpclient (>= 2.8.1, < 3.a)
|
httpclient (>= 2.8.1, < 3.a)
|
||||||
|
@ -121,26 +127,26 @@ GEM
|
||||||
google-apis-core (>= 0.11.0, < 2.a)
|
google-apis-core (>= 0.11.0, < 2.a)
|
||||||
google-apis-playcustomapp_v1 (0.13.0)
|
google-apis-playcustomapp_v1 (0.13.0)
|
||||||
google-apis-core (>= 0.11.0, < 2.a)
|
google-apis-core (>= 0.11.0, < 2.a)
|
||||||
google-apis-storage_v1 (0.19.0)
|
google-apis-storage_v1 (0.29.0)
|
||||||
google-apis-core (>= 0.9.0, < 2.a)
|
google-apis-core (>= 0.11.0, < 2.a)
|
||||||
google-cloud-core (1.6.0)
|
google-cloud-core (1.6.1)
|
||||||
google-cloud-env (~> 1.0)
|
google-cloud-env (>= 1.0, < 3.a)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-cloud-env (1.6.0)
|
google-cloud-env (2.1.0)
|
||||||
faraday (>= 0.17.3, < 3.0)
|
faraday (>= 1.0, < 3.a)
|
||||||
google-cloud-errors (1.3.1)
|
google-cloud-errors (1.3.1)
|
||||||
google-cloud-storage (1.44.0)
|
google-cloud-storage (1.45.0)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
digest-crc (~> 0.4)
|
digest-crc (~> 0.4)
|
||||||
google-apis-iamcredentials_v1 (~> 0.1)
|
google-apis-iamcredentials_v1 (~> 0.1)
|
||||||
google-apis-storage_v1 (~> 0.19.0)
|
google-apis-storage_v1 (~> 0.29.0)
|
||||||
google-cloud-core (~> 1.6)
|
google-cloud-core (~> 1.6)
|
||||||
googleauth (>= 0.16.2, < 2.a)
|
googleauth (>= 0.16.2, < 2.a)
|
||||||
mini_mime (~> 1.0)
|
mini_mime (~> 1.0)
|
||||||
googleauth (1.5.2)
|
googleauth (1.9.1)
|
||||||
faraday (>= 0.17.3, < 3.a)
|
faraday (>= 1.0, < 3.a)
|
||||||
|
google-cloud-env (~> 2.1)
|
||||||
jwt (>= 1.4, < 3.0)
|
jwt (>= 1.4, < 3.0)
|
||||||
memoist (~> 0.16)
|
|
||||||
multi_json (~> 1.11)
|
multi_json (~> 1.11)
|
||||||
os (>= 0.9, < 2.0)
|
os (>= 0.9, < 2.0)
|
||||||
signet (>= 0.16, < 2.a)
|
signet (>= 0.16, < 2.a)
|
||||||
|
@ -148,32 +154,34 @@ GEM
|
||||||
http-cookie (1.0.5)
|
http-cookie (1.0.5)
|
||||||
domain_name (~> 0.5)
|
domain_name (~> 0.5)
|
||||||
httpclient (2.8.3)
|
httpclient (2.8.3)
|
||||||
|
i18n (1.14.1)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
jmespath (1.6.2)
|
jmespath (1.6.2)
|
||||||
json (2.6.3)
|
json (2.7.1)
|
||||||
jwt (2.7.0)
|
jwt (2.7.1)
|
||||||
memoist (0.16.2)
|
|
||||||
mini_magick (4.12.0)
|
mini_magick (4.12.0)
|
||||||
mini_mime (1.1.2)
|
mini_mime (1.1.5)
|
||||||
|
minitest (5.20.0)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
multipart-post (2.0.0)
|
multipart-post (2.3.0)
|
||||||
nanaimo (0.3.0)
|
nanaimo (0.3.0)
|
||||||
naturally (2.2.1)
|
naturally (2.2.1)
|
||||||
optparse (0.1.1)
|
optparse (0.1.1)
|
||||||
os (1.1.4)
|
os (1.1.4)
|
||||||
plist (3.7.0)
|
plist (3.7.0)
|
||||||
public_suffix (5.0.1)
|
public_suffix (5.0.4)
|
||||||
rake (13.0.6)
|
rake (13.1.0)
|
||||||
representable (3.2.0)
|
representable (3.2.0)
|
||||||
declarative (< 0.1.0)
|
declarative (< 0.1.0)
|
||||||
trailblazer-option (>= 0.1.1, < 0.2.0)
|
trailblazer-option (>= 0.1.1, < 0.2.0)
|
||||||
uber (< 0.2.0)
|
uber (< 0.2.0)
|
||||||
retriable (3.1.2)
|
retriable (3.1.2)
|
||||||
rexml (3.2.5)
|
rexml (3.2.6)
|
||||||
rouge (2.0.7)
|
rouge (2.0.7)
|
||||||
ruby2_keywords (0.0.5)
|
ruby2_keywords (0.0.5)
|
||||||
rubyzip (2.3.2)
|
rubyzip (2.3.2)
|
||||||
security (0.1.3)
|
security (0.1.3)
|
||||||
signet (0.17.0)
|
signet (0.18.0)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
faraday (>= 0.17.5, < 3.a)
|
faraday (>= 0.17.5, < 3.a)
|
||||||
jwt (>= 1.5, < 3.0)
|
jwt (>= 1.5, < 3.0)
|
||||||
|
@ -182,21 +190,20 @@ GEM
|
||||||
CFPropertyList
|
CFPropertyList
|
||||||
naturally
|
naturally
|
||||||
terminal-notifier (2.0.0)
|
terminal-notifier (2.0.0)
|
||||||
terminal-table (1.8.0)
|
terminal-table (3.0.2)
|
||||||
unicode-display_width (~> 1.1, >= 1.1.1)
|
unicode-display_width (>= 1.1.1, < 3)
|
||||||
trailblazer-option (0.1.2)
|
trailblazer-option (0.1.2)
|
||||||
tty-cursor (0.7.1)
|
tty-cursor (0.7.1)
|
||||||
tty-screen (0.8.1)
|
tty-screen (0.8.2)
|
||||||
tty-spinner (0.9.3)
|
tty-spinner (0.9.3)
|
||||||
tty-cursor (~> 0.7)
|
tty-cursor (~> 0.7)
|
||||||
|
tzinfo (2.0.6)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
uber (0.1.0)
|
uber (0.1.0)
|
||||||
unf (0.1.4)
|
unicode-display_width (2.5.0)
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.8.2)
|
|
||||||
unicode-display_width (1.8.0)
|
|
||||||
webrick (1.8.1)
|
webrick (1.8.1)
|
||||||
word_wrap (1.0.0)
|
word_wrap (1.0.0)
|
||||||
xcodeproj (1.22.0)
|
xcodeproj (1.23.0)
|
||||||
CFPropertyList (>= 2.3.3, < 4.0)
|
CFPropertyList (>= 2.3.3, < 4.0)
|
||||||
atomos (~> 0.1.3)
|
atomos (~> 0.1.3)
|
||||||
claide (>= 1.0.2, < 2.0)
|
claide (>= 1.0.2, < 2.0)
|
||||||
|
@ -209,10 +216,11 @@ GEM
|
||||||
xcpretty (~> 0.2, >= 0.0.7)
|
xcpretty (~> 0.2, >= 0.0.7)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
arm64-darwin-22
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
activesupport (>= 6.1.7.3, < 7.1.0)
|
||||||
fastlane (>= 2.131.0)
|
fastlane (>= 2.131.0)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.3.9
|
2.4.13
|
||||||
|
|
|
@ -1,14 +1,25 @@
|
||||||
{
|
{
|
||||||
|
activesupport = {
|
||||||
|
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "188kbwkn1lbhz40ala8ykp20jzqphgc68g3d8flin8cqa2xid0s5";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "7.0.8";
|
||||||
|
};
|
||||||
addressable = {
|
addressable = {
|
||||||
dependencies = ["public_suffix"];
|
dependencies = ["public_suffix"];
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20";
|
sha256 = "0irbdwkkjwzajq1ip6ba46q49sxnrl2cw7ddkdhsfhb6aprnm3vr";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.8.4";
|
version = "2.8.6";
|
||||||
};
|
};
|
||||||
artifactory = {
|
artifactory = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -35,20 +46,20 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1pyis1nvnbjxk12a43xvgj2gv0mvp4cnkc1gzw0v1018r61399gz";
|
sha256 = "0gvdg4yx4p9av2glmp7vsxhs0n8fj1ga9kq2xdb8f95j7b04qhzi";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.2.0";
|
version = "1.3.0";
|
||||||
};
|
};
|
||||||
aws-partitions = {
|
aws-partitions = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1256rf6zjh3canwr636w7yczbvhh72cpz2fw5ixljbh4fcfkrvlm";
|
sha256 = "1ddbcz8p3abbw8d8pn796z1ry1mbapl6ayhh37ziwal6bd047kvm";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.768.0";
|
version = "1.872.0";
|
||||||
};
|
};
|
||||||
aws-sdk-core = {
|
aws-sdk-core = {
|
||||||
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
|
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
|
||||||
|
@ -56,10 +67,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "10djgbz4k9w3axka8xrhf97h9yh9svi5g5xvncfwnkg6h22w2177";
|
sha256 = "1ansagfl5irx1y6b9xf4xpi9j6q6k5pbd2aw80hn0p4m3ycafamh";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.173.0";
|
version = "3.190.1";
|
||||||
};
|
};
|
||||||
aws-sdk-kms = {
|
aws-sdk-kms = {
|
||||||
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
dependencies = ["aws-sdk-core" "aws-sigv4"];
|
||||||
|
@ -67,10 +78,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1bcm0c9f7xy5qj5f0z3gddqslhb2vzrj9smc39pgqyq4jmn5kpj0";
|
sha256 = "1qzxqfgrhnl5rdc39a1gl2pgrdxgnsj12zycpxnsx8lg6arfmnr1";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.64.0";
|
version = "1.75.0";
|
||||||
};
|
};
|
||||||
aws-sdk-s3 = {
|
aws-sdk-s3 = {
|
||||||
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
|
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
|
||||||
|
@ -78,10 +89,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "01cryf8kfkmlsxb327szcwcagsp7lss5gmk6zxlgap65lv8bc7rx";
|
sha256 = "0bnhpmi0iiaj88rqc5lhhnp2gyrk4fs8xz51lj36wwzng94qinya";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.122.0";
|
version = "1.141.0";
|
||||||
};
|
};
|
||||||
aws-sigv4 = {
|
aws-sigv4 = {
|
||||||
dependencies = ["aws-eventstream"];
|
dependencies = ["aws-eventstream"];
|
||||||
|
@ -89,10 +100,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "11hkna2av47bl0yprgp8k4ya70rc3m2ib5w10fn0piplgkkmhz7m";
|
sha256 = "1g3w27wzjy4si6kp49w10as6ml6g6zl3xrfqs5ikpfciidv9kpc4";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.5.2";
|
version = "1.8.0";
|
||||||
};
|
};
|
||||||
babosa = {
|
babosa = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -156,6 +167,16 @@
|
||||||
};
|
};
|
||||||
version = "4.6.0";
|
version = "4.6.0";
|
||||||
};
|
};
|
||||||
|
concurrent-ruby = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.2.2";
|
||||||
|
};
|
||||||
declarative = {
|
declarative = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -172,21 +193,20 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1czaak53w8n13y1fr0q23gp0fhklvxjac5n562qj3xk6sh5ad0x2";
|
sha256 = "09114ndpnnyamc2q07bmpzw7kp3rbbfv7plmxcbzzi9d6prmd92w";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.6.4";
|
version = "0.6.5";
|
||||||
};
|
};
|
||||||
domain_name = {
|
domain_name = {
|
||||||
dependencies = ["unf"];
|
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0lcqjsmixjp52bnlgzh4lg9ppsk52x9hpwdjd53k8jnbah2602h0";
|
sha256 = "1gpciaifmxql8h01ci12qq08dnqrdlzkkz6fmia9v9yc3r9a29si";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.5.20190701";
|
version = "0.6.20231109";
|
||||||
};
|
};
|
||||||
dotenv = {
|
dotenv = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -213,10 +233,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0j826kfvzn7nc5pv950n270r0sx1702k988ad11cdlav3dcxxw09";
|
sha256 = "1q9yz7x36mpzpz04bg6hdyrzzk4bri9jg3h2ygw26bf6v3axq53q";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.99.0";
|
version = "0.108.0";
|
||||||
};
|
};
|
||||||
faraday = {
|
faraday = {
|
||||||
dependencies = ["faraday-em_http" "faraday-em_synchrony" "faraday-excon" "faraday-httpclient" "faraday-multipart" "faraday-net_http" "faraday-net_http_persistent" "faraday-patron" "faraday-rack" "faraday-retry" "ruby2_keywords"];
|
dependencies = ["faraday-em_http" "faraday-em_synchrony" "faraday-excon" "faraday-httpclient" "faraday-multipart" "faraday-net_http" "faraday-net_http_persistent" "faraday-patron" "faraday-rack" "faraday-retry" "ruby2_keywords"];
|
||||||
|
@ -363,15 +383,15 @@
|
||||||
version = "2.2.7";
|
version = "2.2.7";
|
||||||
};
|
};
|
||||||
fastlane = {
|
fastlane = {
|
||||||
dependencies = ["CFPropertyList" "addressable" "artifactory" "aws-sdk-s3" "babosa" "colored" "commander" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-apis-androidpublisher_v3" "google-apis-playcustomapp_v1" "google-cloud-storage" "highline" "json" "jwt" "mini_magick" "multipart-post" "naturally" "optparse" "plist" "rubyzip" "security" "simctl" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"];
|
dependencies = ["CFPropertyList" "addressable" "artifactory" "aws-sdk-s3" "babosa" "colored" "commander" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-apis-androidpublisher_v3" "google-apis-playcustomapp_v1" "google-cloud-storage" "highline" "http-cookie" "json" "jwt" "mini_magick" "multipart-post" "naturally" "optparse" "plist" "rubyzip" "security" "simctl" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"];
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "15sa3v3aaslympg9nmadmpxpbzykdiybzxn3navc7mf0iscb3q7s";
|
sha256 = "0p2b92csayzlj60v15fz3mq4h23kvvr7swhaavi6fpaqzf70iafi";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.212.2";
|
version = "2.217.0";
|
||||||
};
|
};
|
||||||
gh_inspector = {
|
gh_inspector = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -389,10 +409,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0ks2ak4fcvlflhyinykvd88g2ybxwsbc347aww349zhn1mqprbvg";
|
sha256 = "046j100lrh5dhb8p3gr38fyqrw8vcif97pqb55ysipy874lafw49";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.42.0";
|
version = "0.54.0";
|
||||||
};
|
};
|
||||||
google-apis-core = {
|
google-apis-core = {
|
||||||
dependencies = ["addressable" "googleauth" "httpclient" "mini_mime" "representable" "retriable" "rexml" "webrick"];
|
dependencies = ["addressable" "googleauth" "httpclient" "mini_mime" "representable" "retriable" "rexml" "webrick"];
|
||||||
|
@ -400,10 +420,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "184zkm5agi7r5fl79hgahjpydsc4d23nd2ynh2sr9z8gs2w4h82f";
|
sha256 = "1cly6ycryjhk15d60v3nqvhqpjk9f0nznnslbdnin90f5r54sbpd";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.11.0";
|
version = "0.11.2";
|
||||||
};
|
};
|
||||||
google-apis-iamcredentials_v1 = {
|
google-apis-iamcredentials_v1 = {
|
||||||
dependencies = ["google-apis-core"];
|
dependencies = ["google-apis-core"];
|
||||||
|
@ -433,10 +453,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "17qamcjnf22zvw1g169g8a2gkzdsxx4ij3a4ganihyrcf9r62asj";
|
sha256 = "1k432qgxf41c4m6d68rascm0gyj18r7ypmrnyzmxh7k7nh543awx";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.19.0";
|
version = "0.29.0";
|
||||||
};
|
};
|
||||||
google-cloud-core = {
|
google-cloud-core = {
|
||||||
dependencies = ["google-cloud-env" "google-cloud-errors"];
|
dependencies = ["google-cloud-env" "google-cloud-errors"];
|
||||||
|
@ -444,10 +464,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0amp8vd16pzbdrfbp7k0k38rqxpwd88bkyp35l3x719hbb6l85za";
|
sha256 = "00wfvdvdv9m4l5ydn6xp65n68mgmpqr3n09hzvxs7gp8fly3j17v";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.6.0";
|
version = "1.6.1";
|
||||||
};
|
};
|
||||||
google-cloud-env = {
|
google-cloud-env = {
|
||||||
dependencies = ["faraday"];
|
dependencies = ["faraday"];
|
||||||
|
@ -455,10 +475,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "05gshdqscg4kil6ppfzmikyavsx449bxyj47j33r4n4p8swsqyb1";
|
sha256 = "056r1p8vhjswnx2cy3mzhwc5gj03whmpz8m4p2ph37gag5bpnxmf";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.6.0";
|
version = "2.1.0";
|
||||||
};
|
};
|
||||||
google-cloud-errors = {
|
google-cloud-errors = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -476,21 +496,21 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1skhlpcykxxzw3050cwngdyc3n746wfx443w1w9chxwjbh2ix6i9";
|
sha256 = "0033bi8qwm0ksxsv5zhz4nzwsiaapq3xk79z8f8rx3v09vdap07j";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.44.0";
|
version = "1.45.0";
|
||||||
};
|
};
|
||||||
googleauth = {
|
googleauth = {
|
||||||
dependencies = ["faraday" "jwt" "memoist" "multi_json" "os" "signet"];
|
dependencies = ["faraday" "google-cloud-env" "jwt" "multi_json" "os" "signet"];
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1lj5haarpn7rybbq9s031zcn9ji3rlz5bk64bwa2j34q5s1h5gis";
|
sha256 = "0spv89di017rg25psiv4w3pn6f67y2w6vv8w910i83b5yii84rl1";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.5.2";
|
version = "1.9.1";
|
||||||
};
|
};
|
||||||
highline = {
|
highline = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -523,6 +543,17 @@
|
||||||
};
|
};
|
||||||
version = "2.8.3";
|
version = "2.8.3";
|
||||||
};
|
};
|
||||||
|
i18n = {
|
||||||
|
dependencies = ["concurrent-ruby"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0qaamqsh5f3szhcakkak8ikxlzxqnv49n2p7504hcz2l0f4nj0wx";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.14.1";
|
||||||
|
};
|
||||||
jmespath = {
|
jmespath = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -538,30 +569,20 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0nalhin1gda4v8ybk6lq8f407cgfrj6qzn234yra4ipkmlbfmal6";
|
sha256 = "0r9jmjhg2ly3l736flk7r2al47b5c8cayh0gqkq0yhjqzc9a6zhq";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.6.3";
|
version = "2.7.1";
|
||||||
};
|
};
|
||||||
jwt = {
|
jwt = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "09yj3z5snhaawh2z1w45yyihzmh57m6m7dp8ra8gxavhj5kbiq5p";
|
sha256 = "16z11alz13vfc4zs5l3fk6n51n2jw9lskvc4h4prnww0y797qd87";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.7.0";
|
version = "2.7.1";
|
||||||
};
|
|
||||||
memoist = {
|
|
||||||
groups = ["default"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "0i9wpzix3sjhf6d9zw60dm4371iq8kyz7ckh2qapan2vyaim6b55";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.16.2";
|
|
||||||
};
|
};
|
||||||
mini_magick = {
|
mini_magick = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -578,10 +599,20 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5";
|
sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.1.2";
|
version = "1.1.5";
|
||||||
|
};
|
||||||
|
minitest = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0bkmfi9mb49m0fkdhl2g38i3xxa02d411gg0m8x0gvbwfmmg5ym3";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "5.20.0";
|
||||||
};
|
};
|
||||||
multi_json = {
|
multi_json = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -598,10 +629,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x";
|
sha256 = "0lgyysrpl50wgcb9ahg29i4p01z0irb3p9lirygma0kkfr5dgk9x";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "2.0.0";
|
version = "2.3.0";
|
||||||
};
|
};
|
||||||
nanaimo = {
|
nanaimo = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -658,20 +689,20 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0hz0bx2qs2pwb0bwazzsah03ilpf3aai8b7lk7s35jsfzwbkjq35";
|
sha256 = "1bni4qjrsh2q49pnmmd6if4iv3ak36bd2cckrs6npl111n769k9m";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "5.0.1";
|
version = "5.0.4";
|
||||||
};
|
};
|
||||||
rake = {
|
rake = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w";
|
sha256 = "1ilr853hawi09626axx0mps4rkkmxcs54mapz9jnqvpnlwd3wsmy";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "13.0.6";
|
version = "13.1.0";
|
||||||
};
|
};
|
||||||
representable = {
|
representable = {
|
||||||
dependencies = ["declarative" "trailblazer-option" "uber"];
|
dependencies = ["declarative" "trailblazer-option" "uber"];
|
||||||
|
@ -699,10 +730,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
|
sha256 = "05i8518ay14kjbma550mv0jm8a6di8yp5phzrd8rj44z9qnrlrp0";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "3.2.5";
|
version = "3.2.6";
|
||||||
};
|
};
|
||||||
rouge = {
|
rouge = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -750,10 +781,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0100rclkhagf032rg3r0gf3f4znrvvvqrimy6hpa73f21n9k2a0x";
|
sha256 = "0fzakk5y7zzii76zlkynpp1c764mzkkfg4mpj18f5pf2xp1aikb6";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.17.0";
|
version = "0.18.0";
|
||||||
};
|
};
|
||||||
simctl = {
|
simctl = {
|
||||||
dependencies = ["CFPropertyList" "naturally"];
|
dependencies = ["CFPropertyList" "naturally"];
|
||||||
|
@ -782,10 +813,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk";
|
sha256 = "14dfmfjppmng5hwj7c5ka6qdapawm3h6k9lhn8zj001ybypvclgr";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.8.0";
|
version = "3.0.2";
|
||||||
};
|
};
|
||||||
trailblazer-option = {
|
trailblazer-option = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -812,10 +843,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "18jr6s1cg8yb26wzkqa6874q0z93rq0y5aw092kdqazk71y6a235";
|
sha256 = "0l4vh6g333jxm9lakilkva2gn17j6gb052626r1pdbmy2lhnb460";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "0.8.1";
|
version = "0.8.2";
|
||||||
};
|
};
|
||||||
tty-spinner = {
|
tty-spinner = {
|
||||||
dependencies = ["tty-cursor"];
|
dependencies = ["tty-cursor"];
|
||||||
|
@ -828,6 +859,17 @@
|
||||||
};
|
};
|
||||||
version = "0.9.3";
|
version = "0.9.3";
|
||||||
};
|
};
|
||||||
|
tzinfo = {
|
||||||
|
dependencies = ["concurrent-ruby"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.0.6";
|
||||||
|
};
|
||||||
uber = {
|
uber = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -838,36 +880,15 @@
|
||||||
};
|
};
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
};
|
};
|
||||||
unf = {
|
|
||||||
dependencies = ["unf_ext"];
|
|
||||||
groups = ["default"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.1.4";
|
|
||||||
};
|
|
||||||
unf_ext = {
|
|
||||||
groups = ["default"];
|
|
||||||
platforms = [];
|
|
||||||
source = {
|
|
||||||
remotes = ["https://rubygems.org"];
|
|
||||||
sha256 = "1yj2nz2l101vr1x9w2k83a0fag1xgnmjwp8w8rw4ik2rwcz65fch";
|
|
||||||
type = "gem";
|
|
||||||
};
|
|
||||||
version = "0.0.8.2";
|
|
||||||
};
|
|
||||||
unicode-display_width = {
|
unicode-display_width = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1204c1jx2g89pc25qk5150mk7j5k90692i7ihgfzqnad6qni74h2";
|
sha256 = "1d0azx233nags5jx3fqyr23qa2rhgzbhv8pxp46dgbg1mpf82xky";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.8.0";
|
version = "2.5.0";
|
||||||
};
|
};
|
||||||
webrick = {
|
webrick = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
|
@ -895,10 +916,10 @@
|
||||||
platforms = [];
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
remotes = ["https://rubygems.org"];
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "1s7hxaqd1fi4rlmm2jbrglyvka1r95frlxan61vfcnd8n6pxynpi";
|
sha256 = "176ndahc5fssyx04q176vy6wngs1av4vrsdrkdpjij700hqll8hn";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
};
|
};
|
||||||
version = "1.22.0";
|
version = "1.23.0";
|
||||||
};
|
};
|
||||||
xcpretty = {
|
xcpretty = {
|
||||||
dependencies = ["rouge"];
|
dependencies = ["rouge"];
|
||||||
|
|
13
ios/Podfile
13
ios/Podfile
|
@ -32,8 +32,8 @@ abstract_target 'Status' do
|
||||||
|
|
||||||
use_react_native!(
|
use_react_native!(
|
||||||
:path => config[:reactNativePath],
|
:path => config[:reactNativePath],
|
||||||
:hermes_enabled => false,
|
|
||||||
:fabric_enabled => flags[:fabric_enabled],
|
:fabric_enabled => flags[:fabric_enabled],
|
||||||
|
:hermes_enabled => false,
|
||||||
# An absolute path to your application root.
|
# An absolute path to your application root.
|
||||||
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
||||||
)
|
)
|
||||||
|
@ -63,15 +63,18 @@ abstract_target 'Status' do
|
||||||
end
|
end
|
||||||
|
|
||||||
post_install do |installer|
|
post_install do |installer|
|
||||||
|
# as per react-native 0.73.2 template
|
||||||
|
# https://github.com/facebook/react-native/blob/c5c0563f209ead8f884204763e02115bd66d1960/packages/react-native/template/ios/Podfile#L49-L52
|
||||||
|
react_native_post_install(
|
||||||
|
installer,
|
||||||
|
config[:reactNativePath],
|
||||||
|
:mac_catalyst_enabled => false,
|
||||||
|
)
|
||||||
# some of libs wouldn't be build for x86_64 otherwise and that is
|
# some of libs wouldn't be build for x86_64 otherwise and that is
|
||||||
# necessary for ios simulators
|
# necessary for ios simulators
|
||||||
installer.pods_project.targets.each do |target|
|
installer.pods_project.targets.each do |target|
|
||||||
target.build_configurations.each do |config|
|
target.build_configurations.each do |config|
|
||||||
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
|
||||||
# fix for no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'?
|
|
||||||
# ref : https://github.com/facebook/react-native/issues/37748
|
|
||||||
# TODO : remove after upgrading to react-native 0.72.x
|
|
||||||
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
|
|
||||||
end
|
end
|
||||||
# We need to remove the predefinition of IPHONEOS_DEPLOYMENT_TARGET from RNCK lib to use our own.
|
# We need to remove the predefinition of IPHONEOS_DEPLOYMENT_TARGET from RNCK lib to use our own.
|
||||||
case target.name
|
case target.name
|
||||||
|
|
1172
ios/Podfile.lock
1172
ios/Podfile.lock
File diff suppressed because it is too large
Load Diff
|
@ -8,8 +8,10 @@
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
00E356F31AD99517003FC87E /* StatusImTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* StatusImTests.m */; };
|
00E356F31AD99517003FC87E /* StatusImTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* StatusImTests.m */; };
|
||||||
|
061AC5E3D44813C6D987FC70 /* libPods-Status-StatusImPR.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C5D722CC6309CA4C8BC48244 /* libPods-Status-StatusImPR.a */; };
|
||||||
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
||||||
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
||||||
|
17F5C611511E64ACE76B00A3 /* libPods-Status-StatusIm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AFB8653840373E5B625E16E /* libPods-Status-StatusIm.a */; };
|
||||||
25DC9C9DC25846BD8D084888 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */; };
|
25DC9C9DC25846BD8D084888 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */; };
|
||||||
3870E1E692E24133A80B07DE /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */; };
|
3870E1E692E24133A80B07DE /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */; };
|
||||||
393D26E3080B443A998F4A2F /* Inter-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */; };
|
393D26E3080B443A998F4A2F /* Inter-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */; };
|
||||||
|
@ -35,6 +37,7 @@
|
||||||
3AAD2AD324A3A60E0075D594 /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */; };
|
3AAD2AD324A3A60E0075D594 /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */; };
|
||||||
3AAD2AD424A3A60E0075D594 /* Inter-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */; };
|
3AAD2AD424A3A60E0075D594 /* Inter-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */; };
|
||||||
3ABC7AF8245FF85900612C45 /* InterStatus-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */; };
|
3ABC7AF8245FF85900612C45 /* InterStatus-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */; };
|
||||||
|
536FC260A89500EC9FDB1585 /* libPods-Status-StatusIm-StatusImTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F311917BE57976CED3B9842 /* libPods-Status-StatusIm-StatusImTests.a */; };
|
||||||
57C854A7993C47A3B1AECD32 /* Inter-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */; };
|
57C854A7993C47A3B1AECD32 /* Inter-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */; };
|
||||||
65F6941925780A4F00A45E76 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65F6941825780A4F00A45E76 /* Bridge.swift */; };
|
65F6941925780A4F00A45E76 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65F6941825780A4F00A45E76 /* Bridge.swift */; };
|
||||||
65F6941A25780A4F00A45E76 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65F6941825780A4F00A45E76 /* Bridge.swift */; };
|
65F6941A25780A4F00A45E76 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65F6941825780A4F00A45E76 /* Bridge.swift */; };
|
||||||
|
@ -44,8 +47,6 @@
|
||||||
715D8133290BE850006F5C88 /* UbuntuMono-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 715D8131290BE850006F5C88 /* UbuntuMono-Regular.ttf */; };
|
715D8133290BE850006F5C88 /* UbuntuMono-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 715D8131290BE850006F5C88 /* UbuntuMono-Regular.ttf */; };
|
||||||
74B758FC20D7C00B003343C3 /* launch-image-universal.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */; };
|
74B758FC20D7C00B003343C3 /* launch-image-universal.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */; };
|
||||||
8391E8E0E93C41A98AAA6631 /* Inter-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */; };
|
8391E8E0E93C41A98AAA6631 /* Inter-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */; };
|
||||||
8BE7C1BD90A0AB68254988BD /* libPods-Status-StatusIm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28A248DF828DD5505CABC707 /* libPods-Status-StatusIm.a */; };
|
|
||||||
9930D2C5DF7BE851C6CE54A1 /* libPods-Status-StatusImPR.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B792BBAE71EAA1C3F2C9C47 /* libPods-Status-StatusImPR.a */; };
|
|
||||||
B24FC7FD1DE7195700D694FF /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7FC1DE7195700D694FF /* Social.framework */; };
|
B24FC7FD1DE7195700D694FF /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7FC1DE7195700D694FF /* Social.framework */; };
|
||||||
B24FC7FF1DE7195F00D694FF /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7FE1DE7195F00D694FF /* MessageUI.framework */; };
|
B24FC7FF1DE7195F00D694FF /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7FE1DE7195F00D694FF /* MessageUI.framework */; };
|
||||||
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */; };
|
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */; };
|
||||||
|
@ -60,7 +61,6 @@
|
||||||
D1786306E0184916B11F4C37 /* Inter-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = B2A38FC3D3954DE7B2B171F8 /* Inter-Medium.otf */; };
|
D1786306E0184916B11F4C37 /* Inter-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = B2A38FC3D3954DE7B2B171F8 /* Inter-Medium.otf */; };
|
||||||
D84616FB563A48EBB1678699 /* Inter-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */; };
|
D84616FB563A48EBB1678699 /* Inter-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */; };
|
||||||
D99C50E5E18942A39C8DDF61 /* Inter-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B321D25F4493470980039457 /* Inter-BoldItalic.otf */; };
|
D99C50E5E18942A39C8DDF61 /* Inter-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B321D25F4493470980039457 /* Inter-BoldItalic.otf */; };
|
||||||
E6794203DEE6BE3C85F205F8 /* libPods-Status-StatusIm-StatusImTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9305FC57D289E57F96162DD2 /* libPods-Status-StatusIm-StatusImTests.a */; };
|
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXContainerItemProxy section */
|
/* Begin PBXContainerItemProxy section */
|
||||||
|
@ -108,14 +108,14 @@
|
||||||
00E356EE1AD99517003FC87E /* StatusImTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StatusImTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
00E356EE1AD99517003FC87E /* StatusImTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StatusImTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||||
00E356F21AD99517003FC87E /* StatusImTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StatusImTests.m; sourceTree = "<group>"; };
|
00E356F21AD99517003FC87E /* StatusImTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StatusImTests.m; sourceTree = "<group>"; };
|
||||||
1130DCD9CBDCA3CA461F55B4 /* Pods-Status-StatusIm.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
13B07F961A680F5B00A75B9A /* StatusIm.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = StatusIm.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
13B07F961A680F5B00A75B9A /* StatusIm.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = StatusIm.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = StatusIm/AppDelegate.h; sourceTree = "<group>"; };
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = StatusIm/AppDelegate.h; sourceTree = "<group>"; };
|
||||||
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = StatusIm/AppDelegate.mm; sourceTree = "<group>"; };
|
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = StatusIm/AppDelegate.mm; sourceTree = "<group>"; };
|
||||||
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = StatusIm/Info.plist; sourceTree = "<group>"; };
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = StatusIm/Info.plist; sourceTree = "<group>"; };
|
||||||
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = StatusIm/main.m; sourceTree = "<group>"; };
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = StatusIm/main.m; sourceTree = "<group>"; };
|
||||||
1426DF592BA248FC81D955CB /* Inter-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Regular.otf"; path = "../resources/fonts/Inter-Regular.otf"; sourceTree = "<group>"; };
|
1426DF592BA248FC81D955CB /* Inter-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Regular.otf"; path = "../resources/fonts/Inter-Regular.otf"; sourceTree = "<group>"; };
|
||||||
28A248DF828DD5505CABC707 /* libPods-Status-StatusIm.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusIm.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
1E0A54C37353D912620563B4 /* Pods-Status-StatusIm.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
1F311917BE57976CED3B9842 /* libPods-Status-StatusIm-StatusImTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusIm-StatusImTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
3A2626CE245C3F2200D5F94B /* Dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Dummy.swift; sourceTree = "<group>"; };
|
3A2626CE245C3F2200D5F94B /* Dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Dummy.swift; sourceTree = "<group>"; };
|
||||||
3A6406FB24A3ADF90046ED37 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
3A6406FB24A3ADF90046ED37 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||||
3A8F8EA924A4D31600BF206D /* GameKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameKit.framework; path = System/Library/Frameworks/GameKit.framework; sourceTree = SDKROOT; };
|
3A8F8EA924A4D31600BF206D /* GameKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameKit.framework; path = System/Library/Frameworks/GameKit.framework; sourceTree = SDKROOT; };
|
||||||
|
@ -123,24 +123,22 @@
|
||||||
3AB1C3AD245C043900098F67 /* StatusIm-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StatusIm-Bridging-Header.h"; sourceTree = "<group>"; };
|
3AB1C3AD245C043900098F67 /* StatusIm-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StatusIm-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
4C16DE0B1F89508700AA10DB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
4C16DE0B1F89508700AA10DB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
||||||
4E586E1B0E544F64AA9F5BD1 /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
|
4E586E1B0E544F64AA9F5BD1 /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
|
||||||
59C9C002A09CA7F40E69C6CB /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm-StatusImTests.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
5B792BBAE71EAA1C3F2C9C47 /* libPods-Status-StatusImPR.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusImPR.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
65F693BD2578002500A45E76 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
|
65F693BD2578002500A45E76 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
|
||||||
65F693BF2578003600A45E76 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk/System/iOSSupport/System/Library/Frameworks/CoreNFC.framework; sourceTree = DEVELOPER_DIR; };
|
65F693BF2578003600A45E76 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk/System/iOSSupport/System/Library/Frameworks/CoreNFC.framework; sourceTree = DEVELOPER_DIR; };
|
||||||
65F6941725780A4E00A45E76 /* StatusImTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StatusImTests-Bridging-Header.h"; sourceTree = "<group>"; };
|
65F6941725780A4E00A45E76 /* StatusImTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StatusImTests-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
65F6941825780A4F00A45E76 /* Bridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bridge.swift; sourceTree = "<group>"; };
|
65F6941825780A4F00A45E76 /* Bridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bridge.swift; sourceTree = "<group>"; };
|
||||||
668C1A2ADF1899973DAA1AB7 /* Pods-Status-StatusIm.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBold.otf"; path = "../resources/fonts/Inter-SemiBold.otf"; sourceTree = "<group>"; };
|
693A62DB37BC4CD5A30E5C96 /* Inter-SemiBold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBold.otf"; path = "../resources/fonts/Inter-SemiBold.otf"; sourceTree = "<group>"; };
|
||||||
715D8131290BE850006F5C88 /* UbuntuMono-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "UbuntuMono-Regular.ttf"; path = "../resources/fonts/UbuntuMono-Regular.ttf"; sourceTree = "<group>"; };
|
715D8131290BE850006F5C88 /* UbuntuMono-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "UbuntuMono-Regular.ttf"; path = "../resources/fonts/UbuntuMono-Regular.ttf"; sourceTree = "<group>"; };
|
||||||
74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "launch-image-universal.storyboard"; sourceTree = "<group>"; };
|
74B758FB20D7C00B003343C3 /* launch-image-universal.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "launch-image-universal.storyboard"; sourceTree = "<group>"; };
|
||||||
|
7625793B15B3B2A8E58F6277 /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm-StatusImTests.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
79B38E3D4B033A711A7852FF /* Pods-Status-StatusImPR.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusImPR.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
|
7AFB8653840373E5B625E16E /* libPods-Status-StatusIm.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusIm.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
|
8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
|
||||||
922C4CA61F4D5F8B0033C753 /* StatusIm.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = StatusIm.entitlements; path = StatusIm/StatusIm.entitlements; sourceTree = "<group>"; };
|
922C4CA61F4D5F8B0033C753 /* StatusIm.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = StatusIm.entitlements; path = StatusIm/StatusIm.entitlements; sourceTree = "<group>"; };
|
||||||
9305FC57D289E57F96162DD2 /* libPods-Status-StatusIm-StatusImTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusIm-StatusImTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "InterStatus-Regular.otf"; path = "../resources/fonts/InterStatus-Regular.otf"; sourceTree = "<group>"; };
|
9C76AF5A418D4D65A4CAD1D9 /* InterStatus-Regular.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "InterStatus-Regular.otf"; path = "../resources/fonts/InterStatus-Regular.otf"; sourceTree = "<group>"; };
|
||||||
9EC0135C1E06FB1900155B5C /* RCTWKWebView.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWKWebView.xcodeproj; path = "../node_modules/react-native-wkwebview-reborn/ios/RCTWKWebView.xcodeproj"; sourceTree = "<group>"; };
|
9EC0135C1E06FB1900155B5C /* RCTWKWebView.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWKWebView.xcodeproj; path = "../node_modules/react-native-wkwebview-reborn/ios/RCTWKWebView.xcodeproj"; sourceTree = "<group>"; };
|
||||||
A18E846035BD6544591E45B9 /* Pods-Status-StatusImPR.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusImPR.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR.release.xcconfig"; sourceTree = "<group>"; };
|
|
||||||
A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBoldItalic.otf"; path = "../resources/fonts/Inter-SemiBoldItalic.otf"; sourceTree = "<group>"; };
|
A4F2BBE8D4DD4140A6CCAC39 /* Inter-SemiBoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-SemiBoldItalic.otf"; path = "../resources/fonts/Inter-SemiBoldItalic.otf"; sourceTree = "<group>"; };
|
||||||
ACFD5EEA905CF67FD6F8C2CC /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm-StatusImTests.release.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests.release.xcconfig"; sourceTree = "<group>"; };
|
AE3313A464E280B64599C3BA /* Pods-Status-StatusIm.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Italic.otf"; path = "../resources/fonts/Inter-Italic.otf"; sourceTree = "<group>"; };
|
B07176ACDAA1422E8F0A3D6B /* Inter-Italic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Italic.otf"; path = "../resources/fonts/Inter-Italic.otf"; sourceTree = "<group>"; };
|
||||||
B24FC7FC1DE7195700D694FF /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
|
B24FC7FC1DE7195700D694FF /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
|
||||||
B24FC7FE1DE7195F00D694FF /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
|
B24FC7FE1DE7195F00D694FF /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
|
||||||
|
@ -150,10 +148,12 @@
|
||||||
C14C5F8C29C0A149005C58A7 /* launch-icon@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon@3x.png"; path = "StatusIm/launch-icon@3x.png"; sourceTree = "<group>"; };
|
C14C5F8C29C0A149005C58A7 /* launch-icon@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon@3x.png"; path = "StatusIm/launch-icon@3x.png"; sourceTree = "<group>"; };
|
||||||
C14C5F9029C0AD9C005C58A7 /* launch-icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon@2x.png"; path = "StatusIm/launch-icon@2x.png"; sourceTree = "<group>"; };
|
C14C5F9029C0AD9C005C58A7 /* launch-icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon@2x.png"; path = "StatusIm/launch-icon@2x.png"; sourceTree = "<group>"; };
|
||||||
C14C5F9229C0ADB5005C58A7 /* launch-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon.png"; path = "StatusIm/launch-icon.png"; sourceTree = "<group>"; };
|
C14C5F9229C0ADB5005C58A7 /* launch-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "launch-icon.png"; path = "StatusIm/launch-icon.png"; sourceTree = "<group>"; };
|
||||||
|
C5D722CC6309CA4C8BC48244 /* libPods-Status-StatusImPR.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Status-StatusImPR.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-MediumItalic.otf"; path = "../resources/fonts/Inter-MediumItalic.otf"; sourceTree = "<group>"; };
|
C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-MediumItalic.otf"; path = "../resources/fonts/Inter-MediumItalic.otf"; sourceTree = "<group>"; };
|
||||||
|
CA58075FD8E5F9A0CA74E512 /* Pods-Status-StatusImPR.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusImPR.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Bold.otf"; path = "../resources/fonts/Inter-Bold.otf"; sourceTree = "<group>"; };
|
CD4A2C27D6D5473184DC1F7E /* Inter-Bold.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-Bold.otf"; path = "../resources/fonts/Inter-Bold.otf"; sourceTree = "<group>"; };
|
||||||
CE4E31B21D8695250033ED64 /* Statusgo.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Statusgo.xcframework; path = "../modules/react-native-status/ios/RCTStatus/Statusgo.xcframework"; sourceTree = "<group>"; };
|
CE4E31B21D8695250033ED64 /* Statusgo.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Statusgo.xcframework; path = "../modules/react-native-status/ios/RCTStatus/Statusgo.xcframework"; sourceTree = "<group>"; };
|
||||||
D0D6FCD821497D4A6D28C82E /* Pods-Status-StatusImPR.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusImPR.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR.debug.xcconfig"; sourceTree = "<group>"; };
|
D1CE733E3486B3A8B9185945 /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Status-StatusIm-StatusImTests.debug.xcconfig"; path = "Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
E6794203DEE6BE3C85F205F8 /* libPods-Status-StatusIm-StatusImTests.a in Frameworks */,
|
536FC260A89500EC9FDB1585 /* libPods-Status-StatusIm-StatusImTests.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
CE4E31B31D8695250033ED64 /* Statusgo.xcframework in Frameworks */,
|
CE4E31B31D8695250033ED64 /* Statusgo.xcframework in Frameworks */,
|
||||||
25DC9C9DC25846BD8D084888 /* libc++.tbd in Frameworks */,
|
25DC9C9DC25846BD8D084888 /* libc++.tbd in Frameworks */,
|
||||||
BA68A2377A20496EA737000D /* libz.tbd in Frameworks */,
|
BA68A2377A20496EA737000D /* libz.tbd in Frameworks */,
|
||||||
8BE7C1BD90A0AB68254988BD /* libPods-Status-StatusIm.a in Frameworks */,
|
17F5C611511E64ACE76B00A3 /* libPods-Status-StatusIm.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
@ -188,7 +188,7 @@
|
||||||
3AAD2AC224A3A60E0075D594 /* Statusgo.xcframework in Frameworks */,
|
3AAD2AC224A3A60E0075D594 /* Statusgo.xcframework in Frameworks */,
|
||||||
3AAD2AC524A3A60E0075D594 /* libc++.tbd in Frameworks */,
|
3AAD2AC524A3A60E0075D594 /* libc++.tbd in Frameworks */,
|
||||||
3AAD2AC624A3A60E0075D594 /* libz.tbd in Frameworks */,
|
3AAD2AC624A3A60E0075D594 /* libz.tbd in Frameworks */,
|
||||||
9930D2C5DF7BE851C6CE54A1 /* libPods-Status-StatusImPR.a in Frameworks */,
|
061AC5E3D44813C6D987FC70 /* libPods-Status-StatusImPR.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
@ -314,9 +314,9 @@
|
||||||
CE4E31B21D8695250033ED64 /* Statusgo.xcframework */,
|
CE4E31B21D8695250033ED64 /* Statusgo.xcframework */,
|
||||||
8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */,
|
8B9A886A2CB448B1ABA0EB62 /* libc++.tbd */,
|
||||||
4E586E1B0E544F64AA9F5BD1 /* libz.tbd */,
|
4E586E1B0E544F64AA9F5BD1 /* libz.tbd */,
|
||||||
28A248DF828DD5505CABC707 /* libPods-Status-StatusIm.a */,
|
7AFB8653840373E5B625E16E /* libPods-Status-StatusIm.a */,
|
||||||
9305FC57D289E57F96162DD2 /* libPods-Status-StatusIm-StatusImTests.a */,
|
1F311917BE57976CED3B9842 /* libPods-Status-StatusIm-StatusImTests.a */,
|
||||||
5B792BBAE71EAA1C3F2C9C47 /* libPods-Status-StatusImPR.a */,
|
C5D722CC6309CA4C8BC48244 /* libPods-Status-StatusImPR.a */,
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -324,12 +324,12 @@
|
||||||
D0D5C8D06825D33BA2D2121E /* Pods */ = {
|
D0D5C8D06825D33BA2D2121E /* Pods */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1130DCD9CBDCA3CA461F55B4 /* Pods-Status-StatusIm.debug.xcconfig */,
|
AE3313A464E280B64599C3BA /* Pods-Status-StatusIm.debug.xcconfig */,
|
||||||
668C1A2ADF1899973DAA1AB7 /* Pods-Status-StatusIm.release.xcconfig */,
|
1E0A54C37353D912620563B4 /* Pods-Status-StatusIm.release.xcconfig */,
|
||||||
59C9C002A09CA7F40E69C6CB /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */,
|
D1CE733E3486B3A8B9185945 /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */,
|
||||||
ACFD5EEA905CF67FD6F8C2CC /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */,
|
7625793B15B3B2A8E58F6277 /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */,
|
||||||
D0D6FCD821497D4A6D28C82E /* Pods-Status-StatusImPR.debug.xcconfig */,
|
CA58075FD8E5F9A0CA74E512 /* Pods-Status-StatusImPR.debug.xcconfig */,
|
||||||
A18E846035BD6544591E45B9 /* Pods-Status-StatusImPR.release.xcconfig */,
|
79B38E3D4B033A711A7852FF /* Pods-Status-StatusImPR.release.xcconfig */,
|
||||||
);
|
);
|
||||||
path = Pods;
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -341,11 +341,11 @@
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StatusImTests" */;
|
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StatusImTests" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
CA339D1D94763C013F2794AD /* [CP] Check Pods Manifest.lock */,
|
8F717D50D3D590696A6046EB /* [CP] Check Pods Manifest.lock */,
|
||||||
00E356EA1AD99517003FC87E /* Sources */,
|
00E356EA1AD99517003FC87E /* Sources */,
|
||||||
00E356EB1AD99517003FC87E /* Frameworks */,
|
00E356EB1AD99517003FC87E /* Frameworks */,
|
||||||
00E356EC1AD99517003FC87E /* Resources */,
|
00E356EC1AD99517003FC87E /* Resources */,
|
||||||
D737FA0B0E9D346092C626FB /* [CP] Copy Pods Resources */,
|
1A83906735641F17B807EB39 /* [CP] Copy Pods Resources */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
|
@ -361,14 +361,14 @@
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "StatusIm" */;
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "StatusIm" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
523CD6BCB20FD78FBF3564AD /* [CP] Check Pods Manifest.lock */,
|
FD7194DC9A3E5A5277869CFC /* [CP] Check Pods Manifest.lock */,
|
||||||
13B07F871A680F5B00A75B9A /* Sources */,
|
13B07F871A680F5B00A75B9A /* Sources */,
|
||||||
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
||||||
13B07F8E1A680F5B00A75B9A /* Resources */,
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
||||||
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
||||||
20B6B6891D92C42700CC5C6A /* Embed Frameworks */,
|
20B6B6891D92C42700CC5C6A /* Embed Frameworks */,
|
||||||
E3914A731DF919ED00EBB515 /* Run Script */,
|
E3914A731DF919ED00EBB515 /* Run Script */,
|
||||||
28606042DA81A750949525E4 /* [CP] Copy Pods Resources */,
|
88DEE6D9CF4D6BA6F6D8DCB5 /* [CP] Copy Pods Resources */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
|
@ -383,14 +383,14 @@
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = 3AAD2AD924A3A60E0075D594 /* Build configuration list for PBXNativeTarget "StatusImPR" */;
|
buildConfigurationList = 3AAD2AD924A3A60E0075D594 /* Build configuration list for PBXNativeTarget "StatusImPR" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
BDAFF7E8D7D1C97E92C1F9B0 /* [CP] Check Pods Manifest.lock */,
|
4EE2E0EC4F119397E1A6B768 /* [CP] Check Pods Manifest.lock */,
|
||||||
3AAD2ABB24A3A60E0075D594 /* Sources */,
|
3AAD2ABB24A3A60E0075D594 /* Sources */,
|
||||||
3AAD2ABF24A3A60E0075D594 /* Frameworks */,
|
3AAD2ABF24A3A60E0075D594 /* Frameworks */,
|
||||||
3AAD2AC924A3A60E0075D594 /* Resources */,
|
3AAD2AC924A3A60E0075D594 /* Resources */,
|
||||||
3AAD2AD524A3A60E0075D594 /* Bundle React Native code and images */,
|
3AAD2AD524A3A60E0075D594 /* Bundle React Native code and images */,
|
||||||
3AAD2AD624A3A60E0075D594 /* Embed Frameworks */,
|
3AAD2AD624A3A60E0075D594 /* Embed Frameworks */,
|
||||||
3AAD2AD724A3A60E0075D594 /* Run Script */,
|
3AAD2AD724A3A60E0075D594 /* Run Script */,
|
||||||
BB1D92AA7446228787D6925C /* [CP] Copy Pods Resources */,
|
1B5C687FDBFFB60FD1043432 /* [CP] Copy Pods Resources */,
|
||||||
);
|
);
|
||||||
buildRules = (
|
buildRules = (
|
||||||
);
|
);
|
||||||
|
@ -544,26 +544,48 @@
|
||||||
shellPath = "/usr/bin/env sh";
|
shellPath = "/usr/bin/env sh";
|
||||||
shellScript = "set -o errexit\nexport NODE_BINARY=\"${NODE_BINARY:-node}\"\nexport NODE_ARGS=\"${NODE_ARGS:- --max-old-space-size=16384 }\"\n\nbash -x ../node_modules/react-native/scripts/react-native-xcode.sh > ../logs/react-native-xcode.log 2>&1";
|
shellScript = "set -o errexit\nexport NODE_BINARY=\"${NODE_BINARY:-node}\"\nexport NODE_ARGS=\"${NODE_ARGS:- --max-old-space-size=16384 }\"\n\nbash -x ../node_modules/react-native/scripts/react-native-xcode.sh > ../logs/react-native-xcode.log 2>&1";
|
||||||
};
|
};
|
||||||
28606042DA81A750949525E4 /* [CP] Copy Pods Resources */ = {
|
1A83906735641F17B807EB39 /* [CP] Copy Pods Resources */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputPaths = (
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm-resources.sh",
|
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests-resources.sh",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
||||||
);
|
);
|
||||||
name = "[CP] Copy Pods Resources";
|
name = "[CP] Copy Pods Resources";
|
||||||
outputPaths = (
|
outputPaths = (
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm-resources.sh\"\n";
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests-resources.sh\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
1B5C687FDBFFB60FD1043432 /* [CP] Copy Pods Resources */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR-resources.sh",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
||||||
|
);
|
||||||
|
name = "[CP] Copy Pods Resources";
|
||||||
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR-resources.sh\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
3AAD2AD524A3A60E0075D594 /* Bundle React Native code and images */ = {
|
3AAD2AD524A3A60E0075D594 /* Bundle React Native code and images */ = {
|
||||||
|
@ -594,51 +616,7 @@
|
||||||
shellPath = "/usr/bin/env sh";
|
shellPath = "/usr/bin/env sh";
|
||||||
shellScript = "\"${PROJECT_DIR}/scripts/set_xcode_version.sh\" > ../logs/set_xcode_version.log 2>&1";
|
shellScript = "\"${PROJECT_DIR}/scripts/set_xcode_version.sh\" > ../logs/set_xcode_version.log 2>&1";
|
||||||
};
|
};
|
||||||
523CD6BCB20FD78FBF3564AD /* [CP] Check Pods Manifest.lock */ = {
|
4EE2E0EC4F119397E1A6B768 /* [CP] Check Pods Manifest.lock */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputFileListPaths = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
||||||
"${PODS_ROOT}/Manifest.lock",
|
|
||||||
);
|
|
||||||
name = "[CP] Check Pods Manifest.lock";
|
|
||||||
outputFileListPaths = (
|
|
||||||
);
|
|
||||||
outputPaths = (
|
|
||||||
"$(DERIVED_FILE_DIR)/Pods-Status-StatusIm-checkManifestLockResult.txt",
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
||||||
showEnvVarsInLog = 0;
|
|
||||||
};
|
|
||||||
BB1D92AA7446228787D6925C /* [CP] Copy Pods Resources */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR-resources.sh",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
|
||||||
);
|
|
||||||
name = "[CP] Copy Pods Resources";
|
|
||||||
outputPaths = (
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusImPR/Pods-Status-StatusImPR-resources.sh\"\n";
|
|
||||||
showEnvVarsInLog = 0;
|
|
||||||
};
|
|
||||||
BDAFF7E8D7D1C97E92C1F9B0 /* [CP] Check Pods Manifest.lock */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
@ -660,7 +638,29 @@
|
||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
CA339D1D94763C013F2794AD /* [CP] Check Pods Manifest.lock */ = {
|
88DEE6D9CF4D6BA6F6D8DCB5 /* [CP] Copy Pods Resources */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm-resources.sh",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
||||||
|
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
||||||
|
);
|
||||||
|
name = "[CP] Copy Pods Resources";
|
||||||
|
outputPaths = (
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
||||||
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm/Pods-Status-StatusIm-resources.sh\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
8F717D50D3D590696A6046EB /* [CP] Check Pods Manifest.lock */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
@ -682,28 +682,6 @@
|
||||||
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
showEnvVarsInLog = 0;
|
showEnvVarsInLog = 0;
|
||||||
};
|
};
|
||||||
D737FA0B0E9D346092C626FB /* [CP] Copy Pods Resources */ = {
|
|
||||||
isa = PBXShellScriptBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
);
|
|
||||||
inputPaths = (
|
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests-resources.sh",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
|
|
||||||
);
|
|
||||||
name = "[CP] Copy Pods Resources";
|
|
||||||
outputPaths = (
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
shellPath = /bin/sh;
|
|
||||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Status-StatusIm-StatusImTests/Pods-Status-StatusIm-StatusImTests-resources.sh\"\n";
|
|
||||||
showEnvVarsInLog = 0;
|
|
||||||
};
|
|
||||||
E3914A731DF919ED00EBB515 /* Run Script */ = {
|
E3914A731DF919ED00EBB515 /* Run Script */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 8;
|
buildActionMask = 8;
|
||||||
|
@ -718,6 +696,28 @@
|
||||||
shellPath = "/usr/bin/env sh";
|
shellPath = "/usr/bin/env sh";
|
||||||
shellScript = "\"${PROJECT_DIR}/scripts/set_xcode_version.sh\" > ../logs/set_xcode_version.log 2>&1";
|
shellScript = "\"${PROJECT_DIR}/scripts/set_xcode_version.sh\" > ../logs/set_xcode_version.log 2>&1";
|
||||||
};
|
};
|
||||||
|
FD7194DC9A3E5A5277869CFC /* [CP] Check Pods Manifest.lock */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||||
|
"${PODS_ROOT}/Manifest.lock",
|
||||||
|
);
|
||||||
|
name = "[CP] Check Pods Manifest.lock";
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
"$(DERIVED_FILE_DIR)/Pods-Status-StatusIm-checkManifestLockResult.txt",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
/* End PBXShellScriptBuildPhase section */
|
/* End PBXShellScriptBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
|
@ -765,7 +765,7 @@
|
||||||
/* Begin XCBuildConfiguration section */
|
/* Begin XCBuildConfiguration section */
|
||||||
00E356F61AD99517003FC87E /* Debug */ = {
|
00E356F61AD99517003FC87E /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 59C9C002A09CA7F40E69C6CB /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */;
|
baseConfigurationReference = D1CE733E3486B3A8B9185945 /* Pods-Status-StatusIm-StatusImTests.debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||||
BUNDLE_ID_SUFFIX = .debug;
|
BUNDLE_ID_SUFFIX = .debug;
|
||||||
|
@ -782,13 +782,13 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusImTests/Info.plist;
|
INFOPLIST_FILE = StatusImTests/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
"@loader_path/Frameworks",
|
"@loader_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift$(inherited)";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
PROVISIONING_PROFILE = "";
|
PROVISIONING_PROFILE = "";
|
||||||
|
@ -802,7 +802,7 @@
|
||||||
};
|
};
|
||||||
00E356F71AD99517003FC87E /* Release */ = {
|
00E356F71AD99517003FC87E /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = ACFD5EEA905CF67FD6F8C2CC /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */;
|
baseConfigurationReference = 7625793B15B3B2A8E58F6277 /* Pods-Status-StatusIm-StatusImTests.release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||||
BUNDLE_ID_SUFFIX = "";
|
BUNDLE_ID_SUFFIX = "";
|
||||||
|
@ -816,13 +816,13 @@
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusImTests/Info.plist;
|
INFOPLIST_FILE = StatusImTests/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
"@loader_path/Frameworks",
|
"@loader_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift$(inherited)";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
PROVISIONING_PROFILE = "";
|
PROVISIONING_PROFILE = "";
|
||||||
|
@ -835,11 +835,11 @@
|
||||||
};
|
};
|
||||||
13B07F941A680F5B00A75B9A /* Debug */ = {
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 1130DCD9CBDCA3CA461F55B4 /* Pods-Status-StatusIm.debug.xcconfig */;
|
baseConfigurationReference = AE3313A464E280B64599C3BA /* Pods-Status-StatusIm.debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
||||||
BUNDLE_ID_SUFFIX = .debug;
|
BUNDLE_ID_SUFFIX = .debug;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements;
|
CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
|
@ -879,13 +879,14 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusIm/Info.plist;
|
INFOPLIST_FILE = StatusIm/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
/usr/lib/swift,
|
/usr/lib/swift,
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
);
|
);
|
||||||
|
@ -894,6 +895,7 @@
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
|
@ -915,11 +917,11 @@
|
||||||
};
|
};
|
||||||
13B07F951A680F5B00A75B9A /* Release */ = {
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = 668C1A2ADF1899973DAA1AB7 /* Pods-Status-StatusIm.release.xcconfig */;
|
baseConfigurationReference = 1E0A54C37353D912620563B4 /* Pods-Status-StatusIm.release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
||||||
BUNDLE_ID_SUFFIX = "";
|
BUNDLE_ID_SUFFIX = "";
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements;
|
CODE_SIGN_ENTITLEMENTS = StatusIm/StatusIm.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
|
@ -953,13 +955,14 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusIm/Info.plist;
|
INFOPLIST_FILE = StatusIm/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
/usr/lib/swift,
|
/usr/lib/swift,
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
);
|
);
|
||||||
|
@ -968,6 +971,7 @@
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
|
@ -988,11 +992,11 @@
|
||||||
};
|
};
|
||||||
3AAD2ADA24A3A60E0075D594 /* Debug */ = {
|
3AAD2ADA24A3A60E0075D594 /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = D0D6FCD821497D4A6D28C82E /* Pods-Status-StatusImPR.debug.xcconfig */;
|
baseConfigurationReference = CA58075FD8E5F9A0CA74E512 /* Pods-Status-StatusImPR.debug.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon$(BUNDLE_ID_SUFFIX)";
|
||||||
BUNDLE_ID_SUFFIX = .debug;
|
BUNDLE_ID_SUFFIX = .debug;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = StatusImPR/StatusImPR.entitlements;
|
CODE_SIGN_ENTITLEMENTS = StatusImPR/StatusImPR.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "iPhone Distribution";
|
CODE_SIGN_IDENTITY = "iPhone Distribution";
|
||||||
|
@ -1031,13 +1035,14 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusImPR/Info.plist;
|
INFOPLIST_FILE = StatusImPR/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
/usr/lib/swift,
|
/usr/lib/swift,
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
);
|
);
|
||||||
|
@ -1046,6 +1051,7 @@
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
|
@ -1065,11 +1071,11 @@
|
||||||
};
|
};
|
||||||
3AAD2ADB24A3A60E0075D594 /* Release */ = {
|
3AAD2ADB24A3A60E0075D594 /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
baseConfigurationReference = A18E846035BD6544591E45B9 /* Pods-Status-StatusImPR.release.xcconfig */;
|
baseConfigurationReference = 79B38E3D4B033A711A7852FF /* Pods-Status-StatusImPR.release.xcconfig */;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIconPR$(BUNDLE_ID_SUFFIX)";
|
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIconPR$(BUNDLE_ID_SUFFIX)";
|
||||||
BUNDLE_ID_SUFFIX = "";
|
BUNDLE_ID_SUFFIX = "";
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = StatusImPR/StatusImPR.entitlements;
|
CODE_SIGN_ENTITLEMENTS = StatusImPR/StatusImPR.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
|
@ -1102,13 +1108,14 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
"$(SRCROOT)/../node_modules/react-native/Libraries/LinkingIOS",
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = StatusImPR/Info.plist;
|
INFOPLIST_FILE = StatusImPR/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
/usr/lib/swift,
|
/usr/lib/swift,
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
);
|
);
|
||||||
|
@ -1117,6 +1124,7 @@
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
|
@ -1139,7 +1147,7 @@
|
||||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CLANG_ENABLE_OBJC_ARC = YES;
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
@ -1172,7 +1180,7 @@
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
EXCLUDED_ARCHS = "";
|
EXCLUDED_ARCHS = "";
|
||||||
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
|
"EXCLUDED_ARCHS[sdk=iphoneos*]" = x86_64;
|
||||||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
|
@ -1203,21 +1211,27 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native-image-resizer/ios/RCTImageResizer",
|
"$(SRCROOT)/../node_modules/react-native-image-resizer/ios/RCTImageResizer",
|
||||||
"$(SRCROOT)/../node_modules/react-native-lottie-splash-screen/ios/**",
|
"$(SRCROOT)/../node_modules/react-native-lottie-splash-screen/ios/**",
|
||||||
);
|
);
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
||||||
"\"$(inherited)\"",
|
"\"$(inherited)\"",
|
||||||
);
|
);
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
|
OTHER_CFLAGS = "$(inherited)";
|
||||||
OTHER_CPLUSPLUSFLAGS = (
|
OTHER_CPLUSPLUSFLAGS = (
|
||||||
"$(OTHER_CFLAGS)",
|
"$(OTHER_CFLAGS)",
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
|
OTHER_LDFLAGS = "$(inherited)";
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
USE_HERMES = false;
|
||||||
VALID_ARCHS = arm64;
|
VALID_ARCHS = arm64;
|
||||||
"VALID_ARCHS[sdk=iphonesimulator*]" = x86_64;
|
"VALID_ARCHS[sdk=iphonesimulator*]" = x86_64;
|
||||||
};
|
};
|
||||||
|
@ -1229,7 +1243,7 @@
|
||||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CLANG_ENABLE_OBJC_ARC = YES;
|
CLANG_ENABLE_OBJC_ARC = YES;
|
||||||
|
@ -1261,7 +1275,7 @@
|
||||||
ENABLE_NS_ASSERTIONS = NO;
|
ENABLE_NS_ASSERTIONS = NO;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
EXCLUDED_ARCHS = "";
|
EXCLUDED_ARCHS = "";
|
||||||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||||
|
@ -1284,21 +1298,27 @@
|
||||||
"$(SRCROOT)/../node_modules/react-native-image-resizer/ios/RCTImageResizer",
|
"$(SRCROOT)/../node_modules/react-native-image-resizer/ios/RCTImageResizer",
|
||||||
"$(SRCROOT)/../node_modules/react-native-lottie-splash-screen/ios/**",
|
"$(SRCROOT)/../node_modules/react-native-lottie-splash-screen/ios/**",
|
||||||
);
|
);
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
||||||
"\"$(inherited)\"",
|
"\"$(inherited)\"",
|
||||||
);
|
);
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
ONLY_ACTIVE_ARCH = NO;
|
ONLY_ACTIVE_ARCH = NO;
|
||||||
|
OTHER_CFLAGS = "$(inherited)";
|
||||||
OTHER_CPLUSPLUSFLAGS = (
|
OTHER_CPLUSPLUSFLAGS = (
|
||||||
"$(OTHER_CFLAGS)",
|
"$(OTHER_CFLAGS)",
|
||||||
"-DFOLLY_NO_CONFIG",
|
"-DFOLLY_NO_CONFIG",
|
||||||
"-DFOLLY_MOBILE=1",
|
"-DFOLLY_MOBILE=1",
|
||||||
"-DFOLLY_USE_LIBCPP=1",
|
"-DFOLLY_USE_LIBCPP=1",
|
||||||
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
||||||
);
|
);
|
||||||
|
OTHER_LDFLAGS = "$(inherited)";
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
USE_HERMES = false;
|
||||||
VALIDATE_PRODUCT = YES;
|
VALIDATE_PRODUCT = YES;
|
||||||
VALID_ARCHS = arm64;
|
VALID_ARCHS = arm64;
|
||||||
};
|
};
|
||||||
|
|
|
@ -104,6 +104,11 @@ extern "C" NSString* StatusgoImageServerTLSCert();
|
||||||
|
|
||||||
|
|
||||||
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
||||||
|
{
|
||||||
|
return [self getBundleURL];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSURL *)getBundleURL
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
|
<true/>
|
||||||
<key>CFBundleBuildUrl</key>
|
<key>CFBundleBuildUrl</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleCommitHash</key>
|
<key>CFBundleCommitHash</key>
|
||||||
<string>unknown</string>
|
<string>unknown</string>
|
||||||
<key>NSFaceIDUsageDescription</key>
|
|
||||||
<string>Enabling Face ID allows you quick and secure access to your account.</string>
|
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
|
@ -59,31 +59,29 @@
|
||||||
</array>
|
</array>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>NFCReaderUsageDescription</key>
|
||||||
|
<string>Enable Keycard</string>
|
||||||
<key>NSAppTransportSecurity</key>
|
<key>NSAppTransportSecurity</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>NSAllowsArbitraryLoads</key>
|
<key>NSAllowsArbitraryLoads</key>
|
||||||
|
<false/>
|
||||||
|
<key>NSAllowsLocalNetworking</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>NSExceptionDomains</key>
|
|
||||||
<dict>
|
|
||||||
<key>localhost</key>
|
|
||||||
<dict>
|
|
||||||
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
</dict>
|
||||||
<key>NSCameraUsageDescription</key>
|
<key>NSCameraUsageDescription</key>
|
||||||
<string>Status uses camera to take pictures and scan QR codes.</string>
|
<string>Status uses camera to take pictures and scan QR codes.</string>
|
||||||
|
<key>NSFaceIDUsageDescription</key>
|
||||||
|
<string>Enabling Face ID allows you quick and secure access to your account.</string>
|
||||||
<key>NSLocationAlwaysUsageDescription</key>
|
<key>NSLocationAlwaysUsageDescription</key>
|
||||||
<string>Location access is required for some DApps to function properly.</string>
|
<string>Location access is required for some DApps to function properly.</string>
|
||||||
<key>NSLocationWhenInUseUsageDescription</key>
|
<key>NSLocationWhenInUseUsageDescription</key>
|
||||||
<string>Location access is required for some DApps to function properly.</string>
|
<string>Location access is required for some DApps to function properly.</string>
|
||||||
<key>NSPhotoLibraryUsageDescription</key>
|
|
||||||
<string>Photos access is required to give you the ability to send images.</string>
|
|
||||||
<key>NSPhotoLibraryAddUsageDescription</key>
|
|
||||||
<string>Photos access is required to give you the ability to save images.</string>
|
|
||||||
<key>NSMicrophoneUsageDescription</key>
|
<key>NSMicrophoneUsageDescription</key>
|
||||||
<string>Need microphone access for sending audio messages.</string>
|
<string>Need microphone access for sending audio messages.</string>
|
||||||
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
||||||
|
<string>Photos access is required to give you the ability to save images.</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>Photos access is required to give you the ability to send images.</string>
|
||||||
<key>UIAppFonts</key>
|
<key>UIAppFonts</key>
|
||||||
<array>
|
<array>
|
||||||
<string>Inter-Bold.otf</string>
|
<string>Inter-Bold.otf</string>
|
||||||
|
@ -140,8 +138,5 @@
|
||||||
<string>A00000080400010301</string>
|
<string>A00000080400010301</string>
|
||||||
<string>A000000151000000</string>
|
<string>A000000151000000</string>
|
||||||
</array>
|
</array>
|
||||||
<key>NFCReaderUsageDescription</key>
|
|
||||||
<string>Enable Keycard</string>
|
|
||||||
<key>CADisableMinimumFrameDurationOnPhone</key><true/>
|
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -3,6 +3,7 @@ package im.status.ethereum.pushnotifications;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.app.Service;
|
import android.app.Service;
|
||||||
|
import android.content.pm.ServiceInfo;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationChannel;
|
import android.app.NotificationChannel;
|
||||||
|
@ -78,10 +79,10 @@ public class ForegroundService extends Service {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_MUTABLE);
|
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE);
|
||||||
Intent stopIntent = new Intent(PushNotificationHelper.ACTION_TAP_STOP);
|
Intent stopIntent = new Intent(PushNotificationHelper.ACTION_TAP_STOP);
|
||||||
PendingIntent stopPendingIntent = PendingIntent.getBroadcast(context, 0, stopIntent,
|
PendingIntent stopPendingIntent = PendingIntent.getBroadcast(context, 0, stopIntent,
|
||||||
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE);
|
PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE);
|
||||||
|
|
||||||
Notification notification = new NotificationCompat.Builder(context, CHANNEL_ID)
|
Notification notification = new NotificationCompat.Builder(context, CHANNEL_ID)
|
||||||
.setSmallIcon(R.drawable.ic_stat_notify_status)
|
.setSmallIcon(R.drawable.ic_stat_notify_status)
|
||||||
|
@ -95,8 +96,14 @@ public class ForegroundService extends Service {
|
||||||
context.getResources().getString(R.string.stop),
|
context.getResources().getString(R.string.stop),
|
||||||
stopPendingIntent)
|
stopPendingIntent)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
// the id of the foreground notification MUST NOT be 0
|
// the id of the foreground notification MUST NOT be 0
|
||||||
startForeground(1, notification);
|
if (Build.VERSION.SDK_INT >= 33) {
|
||||||
|
startForeground(1, notification, ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE);
|
||||||
|
} else {
|
||||||
|
startForeground(1, notification);
|
||||||
|
}
|
||||||
|
|
||||||
return START_STICKY;
|
return START_STICKY;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class PushNotificationHelper {
|
||||||
private static final String CHANNEL_ID = "status-im-notifications";
|
private static final String CHANNEL_ID = "status-im-notifications";
|
||||||
public static final String ACTION_DELETE_NOTIFICATION = "im.status.ethereum.module.DELETE_NOTIFICATION";
|
public static final String ACTION_DELETE_NOTIFICATION = "im.status.ethereum.module.DELETE_NOTIFICATION";
|
||||||
public static final String ACTION_TAP_STOP = "im.status.ethereum.module.TAP_STOP";
|
public static final String ACTION_TAP_STOP = "im.status.ethereum.module.TAP_STOP";
|
||||||
final int flag = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M ? PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE : PendingIntent.FLAG_CANCEL_CURRENT;
|
final int flag = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M ? PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_IMMUTABLE : PendingIntent.FLAG_CANCEL_CURRENT;
|
||||||
|
|
||||||
private NotificationManager notificationManager;
|
private NotificationManager notificationManager;
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ public class PushNotificationHelper {
|
||||||
public void registerBroadcastReceiver() {
|
public void registerBroadcastReceiver() {
|
||||||
this.intentFilter.addAction(ACTION_DELETE_NOTIFICATION);
|
this.intentFilter.addAction(ACTION_DELETE_NOTIFICATION);
|
||||||
this.intentFilter.addAction(ACTION_TAP_STOP);
|
this.intentFilter.addAction(ACTION_TAP_STOP);
|
||||||
context.registerReceiver(notificationActionReceiver, this.intentFilter);
|
context.registerReceiver(notificationActionReceiver, this.intentFilter, Context.RECEIVER_EXPORTED);
|
||||||
Log.e(LOG_TAG, "Broadcast Receiver registered");
|
Log.e(LOG_TAG, "Broadcast Receiver registered");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -518,7 +518,7 @@ public class PushNotificationHelper {
|
||||||
actionIntent.setPackage(packageName);
|
actionIntent.setPackage(packageName);
|
||||||
|
|
||||||
PendingIntent pendingActionIntent = PendingIntent.getBroadcast(context, notificationID, actionIntent,
|
PendingIntent pendingActionIntent = PendingIntent.getBroadcast(context, notificationID, actionIntent,
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_MUTABLE);
|
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
notification.addAction(new NotificationCompat.Action.Builder(icon, action, pendingActionIntent).build());
|
notification.addAction(new NotificationCompat.Action.Builder(icon, action, pendingActionIntent).build());
|
||||||
|
@ -684,7 +684,7 @@ public class PushNotificationHelper {
|
||||||
|
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Person getPerson(Bundle bundle) {
|
private Person getPerson(Bundle bundle) {
|
||||||
String name = bundle.getString("name");
|
String name = bundle.getString("name");
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,22 +1,24 @@
|
||||||
androidx.activity:activity:1.0.0
|
androidx.activity:activity:1.0.0
|
||||||
androidx.activity:activity:1.0.0-rc01
|
androidx.activity:activity:1.0.0-rc01
|
||||||
androidx.activity:activity:1.2.4
|
androidx.activity:activity:1.2.4
|
||||||
|
androidx.activity:activity:1.6.0
|
||||||
androidx.annotation:annotation-experimental:1.1.0
|
androidx.annotation:annotation-experimental:1.1.0
|
||||||
|
androidx.annotation:annotation-experimental:1.3.0
|
||||||
|
androidx.annotation:annotation-jvm:1.6.0
|
||||||
androidx.annotation:annotation:1.0.0
|
androidx.annotation:annotation:1.0.0
|
||||||
androidx.annotation:annotation:1.1.0
|
androidx.annotation:annotation:1.1.0
|
||||||
androidx.annotation:annotation:1.2.0
|
androidx.annotation:annotation:1.2.0
|
||||||
androidx.annotation:annotation:1.3.0
|
androidx.annotation:annotation:1.3.0
|
||||||
|
androidx.annotation:annotation:1.6.0
|
||||||
androidx.appcompat:appcompat-resources:1.1.0-rc01
|
androidx.appcompat:appcompat-resources:1.1.0-rc01
|
||||||
androidx.appcompat:appcompat-resources:1.2.0
|
androidx.appcompat:appcompat-resources:1.2.0
|
||||||
androidx.appcompat:appcompat-resources:1.3.1
|
androidx.appcompat:appcompat-resources:1.3.1
|
||||||
androidx.appcompat:appcompat-resources:1.4.1
|
androidx.appcompat:appcompat-resources:1.6.1
|
||||||
androidx.appcompat:appcompat-resources:1.4.2
|
|
||||||
androidx.appcompat:appcompat:1.0.0
|
androidx.appcompat:appcompat:1.0.0
|
||||||
androidx.appcompat:appcompat:1.1.0-rc01
|
androidx.appcompat:appcompat:1.1.0-rc01
|
||||||
androidx.appcompat:appcompat:1.2.0
|
androidx.appcompat:appcompat:1.2.0
|
||||||
androidx.appcompat:appcompat:1.3.1
|
androidx.appcompat:appcompat:1.3.1
|
||||||
androidx.appcompat:appcompat:1.4.1
|
androidx.appcompat:appcompat:1.6.1
|
||||||
androidx.appcompat:appcompat:1.4.2
|
|
||||||
androidx.arch.core:core-common:2.0.0
|
androidx.arch.core:core-common:2.0.0
|
||||||
androidx.arch.core:core-common:2.1.0
|
androidx.arch.core:core-common:2.1.0
|
||||||
androidx.arch.core:core-common:2.1.0-rc01
|
androidx.arch.core:core-common:2.1.0-rc01
|
||||||
|
@ -38,14 +40,16 @@ androidx.constraintlayout:constraintlayout-solver:2.0.4
|
||||||
androidx.constraintlayout:constraintlayout:2.0.4
|
androidx.constraintlayout:constraintlayout:2.0.4
|
||||||
androidx.coordinatorlayout:coordinatorlayout:1.0.0
|
androidx.coordinatorlayout:coordinatorlayout:1.0.0
|
||||||
androidx.coordinatorlayout:coordinatorlayout:1.1.0
|
androidx.coordinatorlayout:coordinatorlayout:1.1.0
|
||||||
|
androidx.core:core-ktx:1.2.0
|
||||||
androidx.core:core-ktx:1.6.0
|
androidx.core:core-ktx:1.6.0
|
||||||
|
androidx.core:core-ktx:1.9.0
|
||||||
androidx.core:core-splashscreen:1.0.0
|
androidx.core:core-splashscreen:1.0.0
|
||||||
androidx.core:core:1.0.0
|
androidx.core:core:1.0.0
|
||||||
androidx.core:core:1.1.0
|
androidx.core:core:1.1.0
|
||||||
androidx.core:core:1.1.0-rc01
|
androidx.core:core:1.1.0-rc01
|
||||||
androidx.core:core:1.2.0
|
androidx.core:core:1.2.0
|
||||||
androidx.core:core:1.6.0
|
androidx.core:core:1.6.0
|
||||||
androidx.core:core:1.7.0
|
androidx.core:core:1.9.0
|
||||||
androidx.cursoradapter:cursoradapter:1.0.0
|
androidx.cursoradapter:cursoradapter:1.0.0
|
||||||
androidx.customview:customview:1.0.0
|
androidx.customview:customview:1.0.0
|
||||||
androidx.databinding:databinding-common:3.2.1
|
androidx.databinding:databinding-common:3.2.1
|
||||||
|
@ -54,18 +58,18 @@ androidx.databinding:databinding-common:4.1.0
|
||||||
androidx.databinding:databinding-common:7.0.4
|
androidx.databinding:databinding-common:7.0.4
|
||||||
androidx.databinding:databinding-common:7.2.1
|
androidx.databinding:databinding-common:7.2.1
|
||||||
androidx.databinding:databinding-common:7.3.1
|
androidx.databinding:databinding-common:7.3.1
|
||||||
androidx.databinding:databinding-common:7.4.2
|
androidx.databinding:databinding-common:8.1.1
|
||||||
androidx.databinding:databinding-compiler-common:3.2.1
|
androidx.databinding:databinding-compiler-common:3.2.1
|
||||||
androidx.databinding:databinding-compiler-common:3.5.4
|
androidx.databinding:databinding-compiler-common:3.5.4
|
||||||
androidx.databinding:databinding-compiler-common:4.1.0
|
androidx.databinding:databinding-compiler-common:4.1.0
|
||||||
androidx.databinding:databinding-compiler-common:7.0.4
|
androidx.databinding:databinding-compiler-common:7.0.4
|
||||||
androidx.databinding:databinding-compiler-common:7.2.1
|
androidx.databinding:databinding-compiler-common:7.2.1
|
||||||
androidx.databinding:databinding-compiler-common:7.3.1
|
androidx.databinding:databinding-compiler-common:7.3.1
|
||||||
androidx.databinding:databinding-compiler-common:7.4.2
|
androidx.databinding:databinding-compiler-common:8.1.1
|
||||||
androidx.documentfile:documentfile:1.0.0
|
androidx.documentfile:documentfile:1.0.0
|
||||||
androidx.drawerlayout:drawerlayout:1.0.0
|
androidx.drawerlayout:drawerlayout:1.0.0
|
||||||
androidx.emoji2:emoji2-views-helper:1.0.0
|
androidx.emoji2:emoji2-views-helper:1.2.0
|
||||||
androidx.emoji2:emoji2:1.0.0
|
androidx.emoji2:emoji2:1.2.0
|
||||||
androidx.exifinterface:exifinterface:1.0.0
|
androidx.exifinterface:exifinterface:1.0.0
|
||||||
androidx.exifinterface:exifinterface:1.1.0-beta01
|
androidx.exifinterface:exifinterface:1.1.0-beta01
|
||||||
androidx.exifinterface:exifinterface:1.1.0-rc01
|
androidx.exifinterface:exifinterface:1.1.0-rc01
|
||||||
|
@ -83,23 +87,26 @@ androidx.lifecycle:lifecycle-common:2.0.0
|
||||||
androidx.lifecycle:lifecycle-common:2.1.0
|
androidx.lifecycle:lifecycle-common:2.1.0
|
||||||
androidx.lifecycle:lifecycle-common:2.1.0-rc01
|
androidx.lifecycle:lifecycle-common:2.1.0-rc01
|
||||||
androidx.lifecycle:lifecycle-common:2.3.1
|
androidx.lifecycle:lifecycle-common:2.3.1
|
||||||
androidx.lifecycle:lifecycle-common:2.4.0
|
androidx.lifecycle:lifecycle-common:2.5.1
|
||||||
androidx.lifecycle:lifecycle-livedata-core:2.0.0
|
androidx.lifecycle:lifecycle-livedata-core:2.0.0
|
||||||
androidx.lifecycle:lifecycle-livedata-core:2.1.0
|
androidx.lifecycle:lifecycle-livedata-core:2.1.0
|
||||||
androidx.lifecycle:lifecycle-livedata-core:2.3.1
|
androidx.lifecycle:lifecycle-livedata-core:2.3.1
|
||||||
|
androidx.lifecycle:lifecycle-livedata-core:2.5.1
|
||||||
androidx.lifecycle:lifecycle-livedata:2.0.0
|
androidx.lifecycle:lifecycle-livedata:2.0.0
|
||||||
androidx.lifecycle:lifecycle-livedata:2.1.0
|
androidx.lifecycle:lifecycle-livedata:2.1.0
|
||||||
androidx.lifecycle:lifecycle-process:2.4.0
|
androidx.lifecycle:lifecycle-process:2.4.1
|
||||||
androidx.lifecycle:lifecycle-runtime:2.0.0
|
androidx.lifecycle:lifecycle-runtime:2.0.0
|
||||||
androidx.lifecycle:lifecycle-runtime:2.1.0
|
androidx.lifecycle:lifecycle-runtime:2.1.0
|
||||||
androidx.lifecycle:lifecycle-runtime:2.1.0-rc01
|
androidx.lifecycle:lifecycle-runtime:2.1.0-rc01
|
||||||
androidx.lifecycle:lifecycle-runtime:2.3.1
|
androidx.lifecycle:lifecycle-runtime:2.3.1
|
||||||
androidx.lifecycle:lifecycle-runtime:2.4.0
|
androidx.lifecycle:lifecycle-runtime:2.5.1
|
||||||
androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|
androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|
||||||
|
androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1
|
||||||
androidx.lifecycle:lifecycle-viewmodel:2.0.0
|
androidx.lifecycle:lifecycle-viewmodel:2.0.0
|
||||||
androidx.lifecycle:lifecycle-viewmodel:2.1.0
|
androidx.lifecycle:lifecycle-viewmodel:2.1.0
|
||||||
androidx.lifecycle:lifecycle-viewmodel:2.1.0-rc01
|
androidx.lifecycle:lifecycle-viewmodel:2.1.0-rc01
|
||||||
androidx.lifecycle:lifecycle-viewmodel:2.3.1
|
androidx.lifecycle:lifecycle-viewmodel:2.3.1
|
||||||
|
androidx.lifecycle:lifecycle-viewmodel:2.5.1
|
||||||
androidx.loader:loader:1.0.0
|
androidx.loader:loader:1.0.0
|
||||||
androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|
androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|
||||||
androidx.media:media:1.0.0
|
androidx.media:media:1.0.0
|
||||||
|
@ -107,12 +114,13 @@ androidx.multidex:multidex:2.0.1
|
||||||
androidx.print:print:1.0.0
|
androidx.print:print:1.0.0
|
||||||
androidx.recyclerview:recyclerview:1.0.0
|
androidx.recyclerview:recyclerview:1.0.0
|
||||||
androidx.recyclerview:recyclerview:1.1.0
|
androidx.recyclerview:recyclerview:1.1.0
|
||||||
androidx.resourceinspection:resourceinspection-annotation:1.0.0
|
androidx.resourceinspection:resourceinspection-annotation:1.0.1
|
||||||
androidx.savedstate:savedstate:1.0.0
|
androidx.savedstate:savedstate:1.0.0
|
||||||
androidx.savedstate:savedstate:1.0.0-rc01
|
androidx.savedstate:savedstate:1.0.0-rc01
|
||||||
androidx.savedstate:savedstate:1.1.0
|
androidx.savedstate:savedstate:1.1.0
|
||||||
|
androidx.savedstate:savedstate:1.2.0
|
||||||
androidx.slidingpanelayout:slidingpanelayout:1.0.0
|
androidx.slidingpanelayout:slidingpanelayout:1.0.0
|
||||||
androidx.startup:startup-runtime:1.0.0
|
androidx.startup:startup-runtime:1.1.1
|
||||||
androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|
androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|
||||||
androidx.swiperefreshlayout:swiperefreshlayout:1.1.0
|
androidx.swiperefreshlayout:swiperefreshlayout:1.1.0
|
||||||
androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02
|
androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02
|
||||||
|
@ -162,7 +170,7 @@ com.android.databinding:baseLibrary:4.1.0
|
||||||
com.android.databinding:baseLibrary:7.0.4
|
com.android.databinding:baseLibrary:7.0.4
|
||||||
com.android.databinding:baseLibrary:7.2.1
|
com.android.databinding:baseLibrary:7.2.1
|
||||||
com.android.databinding:baseLibrary:7.3.1
|
com.android.databinding:baseLibrary:7.3.1
|
||||||
com.android.databinding:baseLibrary:7.4.2
|
com.android.databinding:baseLibrary:8.1.1
|
||||||
com.android.databinding:compilerCommon:1.0-rc5
|
com.android.databinding:compilerCommon:1.0-rc5
|
||||||
com.android.databinding:compilerCommon:3.0.0
|
com.android.databinding:compilerCommon:3.0.0
|
||||||
com.android.databinding:compilerCommon:3.0.1
|
com.android.databinding:compilerCommon:3.0.1
|
||||||
|
@ -172,7 +180,7 @@ com.android.tools.analytics-library:crash:27.1.0
|
||||||
com.android.tools.analytics-library:crash:30.0.4
|
com.android.tools.analytics-library:crash:30.0.4
|
||||||
com.android.tools.analytics-library:crash:30.2.1
|
com.android.tools.analytics-library:crash:30.2.1
|
||||||
com.android.tools.analytics-library:crash:30.3.1
|
com.android.tools.analytics-library:crash:30.3.1
|
||||||
com.android.tools.analytics-library:crash:30.4.2
|
com.android.tools.analytics-library:crash:31.1.1
|
||||||
com.android.tools.analytics-library:protos:26.0.0
|
com.android.tools.analytics-library:protos:26.0.0
|
||||||
com.android.tools.analytics-library:protos:26.0.1
|
com.android.tools.analytics-library:protos:26.0.1
|
||||||
com.android.tools.analytics-library:protos:26.2.1
|
com.android.tools.analytics-library:protos:26.2.1
|
||||||
|
@ -181,7 +189,7 @@ com.android.tools.analytics-library:protos:27.1.0
|
||||||
com.android.tools.analytics-library:protos:30.0.4
|
com.android.tools.analytics-library:protos:30.0.4
|
||||||
com.android.tools.analytics-library:protos:30.2.1
|
com.android.tools.analytics-library:protos:30.2.1
|
||||||
com.android.tools.analytics-library:protos:30.3.1
|
com.android.tools.analytics-library:protos:30.3.1
|
||||||
com.android.tools.analytics-library:protos:30.4.2
|
com.android.tools.analytics-library:protos:31.1.1
|
||||||
com.android.tools.analytics-library:shared:26.0.0
|
com.android.tools.analytics-library:shared:26.0.0
|
||||||
com.android.tools.analytics-library:shared:26.0.1
|
com.android.tools.analytics-library:shared:26.0.1
|
||||||
com.android.tools.analytics-library:shared:26.2.1
|
com.android.tools.analytics-library:shared:26.2.1
|
||||||
|
@ -190,7 +198,7 @@ com.android.tools.analytics-library:shared:27.1.0
|
||||||
com.android.tools.analytics-library:shared:30.0.4
|
com.android.tools.analytics-library:shared:30.0.4
|
||||||
com.android.tools.analytics-library:shared:30.2.1
|
com.android.tools.analytics-library:shared:30.2.1
|
||||||
com.android.tools.analytics-library:shared:30.3.1
|
com.android.tools.analytics-library:shared:30.3.1
|
||||||
com.android.tools.analytics-library:shared:30.4.2
|
com.android.tools.analytics-library:shared:31.1.1
|
||||||
com.android.tools.analytics-library:tracker:26.0.0
|
com.android.tools.analytics-library:tracker:26.0.0
|
||||||
com.android.tools.analytics-library:tracker:26.0.1
|
com.android.tools.analytics-library:tracker:26.0.1
|
||||||
com.android.tools.analytics-library:tracker:26.2.1
|
com.android.tools.analytics-library:tracker:26.2.1
|
||||||
|
@ -199,7 +207,7 @@ com.android.tools.analytics-library:tracker:27.1.0
|
||||||
com.android.tools.analytics-library:tracker:30.0.4
|
com.android.tools.analytics-library:tracker:30.0.4
|
||||||
com.android.tools.analytics-library:tracker:30.2.1
|
com.android.tools.analytics-library:tracker:30.2.1
|
||||||
com.android.tools.analytics-library:tracker:30.3.1
|
com.android.tools.analytics-library:tracker:30.3.1
|
||||||
com.android.tools.analytics-library:tracker:30.4.2
|
com.android.tools.analytics-library:tracker:31.1.1
|
||||||
com.android.tools.build.jetifier:jetifier-core:1.0.0-alpha10
|
com.android.tools.build.jetifier:jetifier-core:1.0.0-alpha10
|
||||||
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta04
|
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta04
|
||||||
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09
|
com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09
|
||||||
|
@ -214,12 +222,13 @@ com.android.tools.build:aapt2-proto:4.1.0-6503028
|
||||||
com.android.tools.build:aapt2-proto:7.0.4-7396180
|
com.android.tools.build:aapt2-proto:7.0.4-7396180
|
||||||
com.android.tools.build:aapt2-proto:7.2.1-7984345
|
com.android.tools.build:aapt2-proto:7.2.1-7984345
|
||||||
com.android.tools.build:aapt2-proto:7.3.1-8691043
|
com.android.tools.build:aapt2-proto:7.3.1-8691043
|
||||||
com.android.tools.build:aapt2-proto:7.4.2-8841542
|
com.android.tools.build:aapt2-proto:8.1.1-10154469
|
||||||
|
com.android.tools.build:aapt2:8.1.1-10154469
|
||||||
com.android.tools.build:aaptcompiler:4.1.0
|
com.android.tools.build:aaptcompiler:4.1.0
|
||||||
com.android.tools.build:aaptcompiler:7.0.4
|
com.android.tools.build:aaptcompiler:7.0.4
|
||||||
com.android.tools.build:aaptcompiler:7.2.1
|
com.android.tools.build:aaptcompiler:7.2.1
|
||||||
com.android.tools.build:aaptcompiler:7.3.1
|
com.android.tools.build:aaptcompiler:7.3.1
|
||||||
com.android.tools.build:aaptcompiler:7.4.2
|
com.android.tools.build:aaptcompiler:8.1.1
|
||||||
com.android.tools.build:apksig:3.0.0
|
com.android.tools.build:apksig:3.0.0
|
||||||
com.android.tools.build:apksig:3.0.1
|
com.android.tools.build:apksig:3.0.1
|
||||||
com.android.tools.build:apksig:3.2.1
|
com.android.tools.build:apksig:3.2.1
|
||||||
|
@ -228,14 +237,14 @@ com.android.tools.build:apksig:4.1.0
|
||||||
com.android.tools.build:apksig:7.0.4
|
com.android.tools.build:apksig:7.0.4
|
||||||
com.android.tools.build:apksig:7.2.1
|
com.android.tools.build:apksig:7.2.1
|
||||||
com.android.tools.build:apksig:7.3.1
|
com.android.tools.build:apksig:7.3.1
|
||||||
com.android.tools.build:apksig:7.4.2
|
com.android.tools.build:apksig:8.1.1
|
||||||
com.android.tools.build:apkzlib:3.2.1
|
com.android.tools.build:apkzlib:3.2.1
|
||||||
com.android.tools.build:apkzlib:3.5.4
|
com.android.tools.build:apkzlib:3.5.4
|
||||||
com.android.tools.build:apkzlib:4.1.0
|
com.android.tools.build:apkzlib:4.1.0
|
||||||
com.android.tools.build:apkzlib:7.0.4
|
com.android.tools.build:apkzlib:7.0.4
|
||||||
com.android.tools.build:apkzlib:7.2.1
|
com.android.tools.build:apkzlib:7.2.1
|
||||||
com.android.tools.build:apkzlib:7.3.1
|
com.android.tools.build:apkzlib:7.3.1
|
||||||
com.android.tools.build:apkzlib:7.4.2
|
com.android.tools.build:apkzlib:8.1.1
|
||||||
com.android.tools.build:builder-model:1.3.1
|
com.android.tools.build:builder-model:1.3.1
|
||||||
com.android.tools.build:builder-model:1.5.0
|
com.android.tools.build:builder-model:1.5.0
|
||||||
com.android.tools.build:builder-model:3.0.0
|
com.android.tools.build:builder-model:3.0.0
|
||||||
|
@ -246,7 +255,7 @@ com.android.tools.build:builder-model:4.1.0
|
||||||
com.android.tools.build:builder-model:7.0.4
|
com.android.tools.build:builder-model:7.0.4
|
||||||
com.android.tools.build:builder-model:7.2.1
|
com.android.tools.build:builder-model:7.2.1
|
||||||
com.android.tools.build:builder-model:7.3.1
|
com.android.tools.build:builder-model:7.3.1
|
||||||
com.android.tools.build:builder-model:7.4.2
|
com.android.tools.build:builder-model:8.1.1
|
||||||
com.android.tools.build:builder-test-api:1.3.1
|
com.android.tools.build:builder-test-api:1.3.1
|
||||||
com.android.tools.build:builder-test-api:1.5.0
|
com.android.tools.build:builder-test-api:1.5.0
|
||||||
com.android.tools.build:builder-test-api:3.0.0
|
com.android.tools.build:builder-test-api:3.0.0
|
||||||
|
@ -257,7 +266,7 @@ com.android.tools.build:builder-test-api:4.1.0
|
||||||
com.android.tools.build:builder-test-api:7.0.4
|
com.android.tools.build:builder-test-api:7.0.4
|
||||||
com.android.tools.build:builder-test-api:7.2.1
|
com.android.tools.build:builder-test-api:7.2.1
|
||||||
com.android.tools.build:builder-test-api:7.3.1
|
com.android.tools.build:builder-test-api:7.3.1
|
||||||
com.android.tools.build:builder-test-api:7.4.2
|
com.android.tools.build:builder-test-api:8.1.1
|
||||||
com.android.tools.build:builder:1.3.1
|
com.android.tools.build:builder:1.3.1
|
||||||
com.android.tools.build:builder:1.5.0
|
com.android.tools.build:builder:1.5.0
|
||||||
com.android.tools.build:builder:3.0.0
|
com.android.tools.build:builder:3.0.0
|
||||||
|
@ -268,14 +277,14 @@ com.android.tools.build:builder:4.1.0
|
||||||
com.android.tools.build:builder:7.0.4
|
com.android.tools.build:builder:7.0.4
|
||||||
com.android.tools.build:builder:7.2.1
|
com.android.tools.build:builder:7.2.1
|
||||||
com.android.tools.build:builder:7.3.1
|
com.android.tools.build:builder:7.3.1
|
||||||
com.android.tools.build:builder:7.4.2
|
com.android.tools.build:builder:8.1.1
|
||||||
com.android.tools.build:bundletool:0.5.0
|
com.android.tools.build:bundletool:0.5.0
|
||||||
com.android.tools.build:bundletool:0.9.0
|
com.android.tools.build:bundletool:0.9.0
|
||||||
com.android.tools.build:bundletool:0.14.0
|
com.android.tools.build:bundletool:0.14.0
|
||||||
com.android.tools.build:bundletool:1.6.0
|
com.android.tools.build:bundletool:1.6.0
|
||||||
com.android.tools.build:bundletool:1.8.2
|
com.android.tools.build:bundletool:1.8.2
|
||||||
com.android.tools.build:bundletool:1.9.0
|
com.android.tools.build:bundletool:1.9.0
|
||||||
com.android.tools.build:bundletool:1.11.4
|
com.android.tools.build:bundletool:1.14.0
|
||||||
com.android.tools.build:gradle-api:3.0.0
|
com.android.tools.build:gradle-api:3.0.0
|
||||||
com.android.tools.build:gradle-api:3.0.1
|
com.android.tools.build:gradle-api:3.0.1
|
||||||
com.android.tools.build:gradle-api:3.2.1
|
com.android.tools.build:gradle-api:3.2.1
|
||||||
|
@ -284,12 +293,12 @@ com.android.tools.build:gradle-api:4.1.0
|
||||||
com.android.tools.build:gradle-api:7.0.4
|
com.android.tools.build:gradle-api:7.0.4
|
||||||
com.android.tools.build:gradle-api:7.2.1
|
com.android.tools.build:gradle-api:7.2.1
|
||||||
com.android.tools.build:gradle-api:7.3.1
|
com.android.tools.build:gradle-api:7.3.1
|
||||||
com.android.tools.build:gradle-api:7.4.2
|
com.android.tools.build:gradle-api:8.1.1
|
||||||
com.android.tools.build:gradle-core:1.3.1
|
com.android.tools.build:gradle-core:1.3.1
|
||||||
com.android.tools.build:gradle-core:1.5.0
|
com.android.tools.build:gradle-core:1.5.0
|
||||||
com.android.tools.build:gradle-core:3.0.0
|
com.android.tools.build:gradle-core:3.0.0
|
||||||
com.android.tools.build:gradle-core:3.0.1
|
com.android.tools.build:gradle-core:3.0.1
|
||||||
com.android.tools.build:gradle-settings-api:7.4.2
|
com.android.tools.build:gradle-settings-api:8.1.1
|
||||||
com.android.tools.build:gradle:1.3.1
|
com.android.tools.build:gradle:1.3.1
|
||||||
com.android.tools.build:gradle:1.5.0
|
com.android.tools.build:gradle:1.5.0
|
||||||
com.android.tools.build:gradle:3.0.0
|
com.android.tools.build:gradle:3.0.0
|
||||||
|
@ -310,7 +319,7 @@ com.android.tools.build:manifest-merger:27.1.0
|
||||||
com.android.tools.build:manifest-merger:30.0.4
|
com.android.tools.build:manifest-merger:30.0.4
|
||||||
com.android.tools.build:manifest-merger:30.2.1
|
com.android.tools.build:manifest-merger:30.2.1
|
||||||
com.android.tools.build:manifest-merger:30.3.1
|
com.android.tools.build:manifest-merger:30.3.1
|
||||||
com.android.tools.build:manifest-merger:30.4.2
|
com.android.tools.build:manifest-merger:31.1.1
|
||||||
com.android.tools.build:transform-api:1.5.0
|
com.android.tools.build:transform-api:1.5.0
|
||||||
com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api
|
com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api
|
||||||
com.android.tools.ddms:ddmlib:24.3.1
|
com.android.tools.ddms:ddmlib:24.3.1
|
||||||
|
@ -323,7 +332,7 @@ com.android.tools.ddms:ddmlib:27.1.0
|
||||||
com.android.tools.ddms:ddmlib:30.0.4
|
com.android.tools.ddms:ddmlib:30.0.4
|
||||||
com.android.tools.ddms:ddmlib:30.2.1
|
com.android.tools.ddms:ddmlib:30.2.1
|
||||||
com.android.tools.ddms:ddmlib:30.3.1
|
com.android.tools.ddms:ddmlib:30.3.1
|
||||||
com.android.tools.ddms:ddmlib:30.4.2
|
com.android.tools.ddms:ddmlib:31.1.1
|
||||||
com.android.tools.external.com-intellij:intellij-core:26.0.0
|
com.android.tools.external.com-intellij:intellij-core:26.0.0
|
||||||
com.android.tools.external.com-intellij:intellij-core:26.0.1
|
com.android.tools.external.com-intellij:intellij-core:26.0.1
|
||||||
com.android.tools.external.lombok:lombok-ast:0.2.3
|
com.android.tools.external.lombok:lombok-ast:0.2.3
|
||||||
|
@ -341,7 +350,7 @@ com.android.tools.layoutlib:layoutlib-api:27.1.0
|
||||||
com.android.tools.layoutlib:layoutlib-api:30.0.4
|
com.android.tools.layoutlib:layoutlib-api:30.0.4
|
||||||
com.android.tools.layoutlib:layoutlib-api:30.2.1
|
com.android.tools.layoutlib:layoutlib-api:30.2.1
|
||||||
com.android.tools.layoutlib:layoutlib-api:30.3.1
|
com.android.tools.layoutlib:layoutlib-api:30.3.1
|
||||||
com.android.tools.layoutlib:layoutlib-api:30.4.2
|
com.android.tools.layoutlib:layoutlib-api:31.1.1
|
||||||
com.android.tools.lint:lint-api:24.3.1
|
com.android.tools.lint:lint-api:24.3.1
|
||||||
com.android.tools.lint:lint-api:24.5.0
|
com.android.tools.lint:lint-api:24.5.0
|
||||||
com.android.tools.lint:lint-api:26.0.0
|
com.android.tools.lint:lint-api:26.0.0
|
||||||
|
@ -357,35 +366,38 @@ com.android.tools.lint:lint-model:27.1.0
|
||||||
com.android.tools.lint:lint-model:30.0.4
|
com.android.tools.lint:lint-model:30.0.4
|
||||||
com.android.tools.lint:lint-model:30.2.1
|
com.android.tools.lint:lint-model:30.2.1
|
||||||
com.android.tools.lint:lint-model:30.3.1
|
com.android.tools.lint:lint-model:30.3.1
|
||||||
com.android.tools.lint:lint-model:30.4.2
|
com.android.tools.lint:lint-model:31.1.1
|
||||||
com.android.tools.lint:lint-typedef-remover:30.2.1
|
com.android.tools.lint:lint-typedef-remover:30.2.1
|
||||||
com.android.tools.lint:lint-typedef-remover:30.3.1
|
com.android.tools.lint:lint-typedef-remover:30.3.1
|
||||||
com.android.tools.lint:lint-typedef-remover:30.4.2
|
com.android.tools.lint:lint-typedef-remover:31.1.1
|
||||||
com.android.tools.lint:lint:24.3.1
|
com.android.tools.lint:lint:24.3.1
|
||||||
com.android.tools.lint:lint:24.5.0
|
com.android.tools.lint:lint:24.5.0
|
||||||
com.android.tools.lint:lint:26.0.0
|
com.android.tools.lint:lint:26.0.0
|
||||||
com.android.tools.lint:lint:26.0.1
|
com.android.tools.lint:lint:26.0.1
|
||||||
com.android.tools.utp:android-device-provider-ddmlib-proto:30.2.1
|
com.android.tools.utp:android-device-provider-ddmlib-proto:30.2.1
|
||||||
com.android.tools.utp:android-device-provider-ddmlib-proto:30.3.1
|
com.android.tools.utp:android-device-provider-ddmlib-proto:30.3.1
|
||||||
com.android.tools.utp:android-device-provider-ddmlib-proto:30.4.2
|
com.android.tools.utp:android-device-provider-ddmlib-proto:31.1.1
|
||||||
com.android.tools.utp:android-device-provider-gradle-proto:30.0.4
|
com.android.tools.utp:android-device-provider-gradle-proto:30.0.4
|
||||||
com.android.tools.utp:android-device-provider-gradle-proto:30.2.1
|
com.android.tools.utp:android-device-provider-gradle-proto:30.2.1
|
||||||
com.android.tools.utp:android-device-provider-gradle-proto:30.3.1
|
com.android.tools.utp:android-device-provider-gradle-proto:30.3.1
|
||||||
com.android.tools.utp:android-device-provider-gradle-proto:30.4.2
|
com.android.tools.utp:android-device-provider-gradle-proto:31.1.1
|
||||||
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.2.1
|
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.2.1
|
||||||
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.3.1
|
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.3.1
|
||||||
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:30.4.2
|
com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:31.1.1
|
||||||
|
com.android.tools.utp:android-test-plugin-host-apk-installer-proto:31.1.1
|
||||||
com.android.tools.utp:android-test-plugin-host-coverage-proto:30.2.1
|
com.android.tools.utp:android-test-plugin-host-coverage-proto:30.2.1
|
||||||
com.android.tools.utp:android-test-plugin-host-coverage-proto:30.3.1
|
com.android.tools.utp:android-test-plugin-host-coverage-proto:30.3.1
|
||||||
com.android.tools.utp:android-test-plugin-host-coverage-proto:30.4.2
|
com.android.tools.utp:android-test-plugin-host-coverage-proto:31.1.1
|
||||||
|
com.android.tools.utp:android-test-plugin-host-emulator-control-proto:31.1.1
|
||||||
|
com.android.tools.utp:android-test-plugin-host-logcat-proto:31.1.1
|
||||||
com.android.tools.utp:android-test-plugin-host-retention-proto:30.0.4
|
com.android.tools.utp:android-test-plugin-host-retention-proto:30.0.4
|
||||||
com.android.tools.utp:android-test-plugin-host-retention-proto:30.2.1
|
com.android.tools.utp:android-test-plugin-host-retention-proto:30.2.1
|
||||||
com.android.tools.utp:android-test-plugin-host-retention-proto:30.3.1
|
com.android.tools.utp:android-test-plugin-host-retention-proto:30.3.1
|
||||||
com.android.tools.utp:android-test-plugin-host-retention-proto:30.4.2
|
com.android.tools.utp:android-test-plugin-host-retention-proto:31.1.1
|
||||||
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.0.4
|
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.0.4
|
||||||
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.2.1
|
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.2.1
|
||||||
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.3.1
|
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.3.1
|
||||||
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:30.4.2
|
com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:31.1.1
|
||||||
com.android.tools:annotations:24.3.1
|
com.android.tools:annotations:24.3.1
|
||||||
com.android.tools:annotations:24.5.0
|
com.android.tools:annotations:24.5.0
|
||||||
com.android.tools:annotations:26.0.0
|
com.android.tools:annotations:26.0.0
|
||||||
|
@ -396,7 +408,7 @@ com.android.tools:annotations:27.1.0
|
||||||
com.android.tools:annotations:30.0.4
|
com.android.tools:annotations:30.0.4
|
||||||
com.android.tools:annotations:30.2.1
|
com.android.tools:annotations:30.2.1
|
||||||
com.android.tools:annotations:30.3.1
|
com.android.tools:annotations:30.3.1
|
||||||
com.android.tools:annotations:30.4.2
|
com.android.tools:annotations:31.1.1
|
||||||
com.android.tools:common:24.3.1
|
com.android.tools:common:24.3.1
|
||||||
com.android.tools:common:24.5.0
|
com.android.tools:common:24.5.0
|
||||||
com.android.tools:common:26.0.0
|
com.android.tools:common:26.0.0
|
||||||
|
@ -407,7 +419,7 @@ com.android.tools:common:27.1.0
|
||||||
com.android.tools:common:30.0.4
|
com.android.tools:common:30.0.4
|
||||||
com.android.tools:common:30.2.1
|
com.android.tools:common:30.2.1
|
||||||
com.android.tools:common:30.3.1
|
com.android.tools:common:30.3.1
|
||||||
com.android.tools:common:30.4.2
|
com.android.tools:common:31.1.1
|
||||||
com.android.tools:dvlib:24.3.1
|
com.android.tools:dvlib:24.3.1
|
||||||
com.android.tools:dvlib:24.5.0
|
com.android.tools:dvlib:24.5.0
|
||||||
com.android.tools:dvlib:26.0.0
|
com.android.tools:dvlib:26.0.0
|
||||||
|
@ -418,7 +430,7 @@ com.android.tools:dvlib:27.1.0
|
||||||
com.android.tools:dvlib:30.0.4
|
com.android.tools:dvlib:30.0.4
|
||||||
com.android.tools:dvlib:30.2.1
|
com.android.tools:dvlib:30.2.1
|
||||||
com.android.tools:dvlib:30.3.1
|
com.android.tools:dvlib:30.3.1
|
||||||
com.android.tools:dvlib:30.4.2
|
com.android.tools:dvlib:31.1.1
|
||||||
com.android.tools:repository:26.0.0
|
com.android.tools:repository:26.0.0
|
||||||
com.android.tools:repository:26.0.1
|
com.android.tools:repository:26.0.1
|
||||||
com.android.tools:repository:26.2.1
|
com.android.tools:repository:26.2.1
|
||||||
|
@ -427,7 +439,7 @@ com.android.tools:repository:27.1.0
|
||||||
com.android.tools:repository:30.0.4
|
com.android.tools:repository:30.0.4
|
||||||
com.android.tools:repository:30.2.1
|
com.android.tools:repository:30.2.1
|
||||||
com.android.tools:repository:30.3.1
|
com.android.tools:repository:30.3.1
|
||||||
com.android.tools:repository:30.4.2
|
com.android.tools:repository:31.1.1
|
||||||
com.android.tools:sdklib:24.3.1
|
com.android.tools:sdklib:24.3.1
|
||||||
com.android.tools:sdklib:24.5.0
|
com.android.tools:sdklib:24.5.0
|
||||||
com.android.tools:sdklib:26.0.0
|
com.android.tools:sdklib:26.0.0
|
||||||
|
@ -438,7 +450,7 @@ com.android.tools:sdklib:27.1.0
|
||||||
com.android.tools:sdklib:30.0.4
|
com.android.tools:sdklib:30.0.4
|
||||||
com.android.tools:sdklib:30.2.1
|
com.android.tools:sdklib:30.2.1
|
||||||
com.android.tools:sdklib:30.3.1
|
com.android.tools:sdklib:30.3.1
|
||||||
com.android.tools:sdklib:30.4.2
|
com.android.tools:sdklib:31.1.1
|
||||||
com.android.tools:sdk-common:24.3.1
|
com.android.tools:sdk-common:24.3.1
|
||||||
com.android.tools:sdk-common:24.5.0
|
com.android.tools:sdk-common:24.5.0
|
||||||
com.android.tools:sdk-common:26.0.0
|
com.android.tools:sdk-common:26.0.0
|
||||||
|
@ -449,47 +461,61 @@ com.android.tools:sdk-common:27.1.0
|
||||||
com.android.tools:sdk-common:30.0.4
|
com.android.tools:sdk-common:30.0.4
|
||||||
com.android.tools:sdk-common:30.2.1
|
com.android.tools:sdk-common:30.2.1
|
||||||
com.android.tools:sdk-common:30.3.1
|
com.android.tools:sdk-common:30.3.1
|
||||||
com.android.tools:sdk-common:30.4.2
|
com.android.tools:sdk-common:31.1.1
|
||||||
com.android:signflinger:4.1.0
|
com.android:signflinger:4.1.0
|
||||||
com.android:signflinger:7.0.4
|
com.android:signflinger:7.0.4
|
||||||
com.android:signflinger:7.2.1
|
com.android:signflinger:7.2.1
|
||||||
com.android:signflinger:7.3.1
|
com.android:signflinger:7.3.1
|
||||||
com.android:signflinger:7.4.2
|
com.android:signflinger:8.1.1
|
||||||
com.android:zipflinger:4.1.0
|
com.android:zipflinger:4.1.0
|
||||||
com.android:zipflinger:7.0.4
|
com.android:zipflinger:7.0.4
|
||||||
com.android:zipflinger:7.2.1
|
com.android:zipflinger:7.2.1
|
||||||
com.android:zipflinger:7.3.1
|
com.android:zipflinger:7.3.1
|
||||||
com.android:zipflinger:7.4.2
|
com.android:zipflinger:8.1.1
|
||||||
com.diffplug.durian:durian-collect:1.2.0
|
com.diffplug.durian:durian-collect:1.2.0
|
||||||
com.diffplug.durian:durian-core:1.2.0
|
com.diffplug.durian:durian-core:1.2.0
|
||||||
com.diffplug.durian:durian-io:1.2.0
|
com.diffplug.durian:durian-io:1.2.0
|
||||||
|
com.diffplug.spotless:spotless-lib-extra:2.26.2
|
||||||
com.diffplug.spotless:spotless-lib-extra:2.30.0
|
com.diffplug.spotless:spotless-lib-extra:2.30.0
|
||||||
|
com.diffplug.spotless:spotless-lib:2.26.2
|
||||||
com.diffplug.spotless:spotless-lib:2.30.0
|
com.diffplug.spotless:spotless-lib:2.30.0
|
||||||
|
com.diffplug.spotless:spotless-plugin-gradle:6.7.2
|
||||||
com.diffplug.spotless:spotless-plugin-gradle:6.11.0
|
com.diffplug.spotless:spotless-plugin-gradle:6.11.0
|
||||||
com.drewnoakes:metadata-extractor:2.18.0
|
com.drewnoakes:metadata-extractor:2.18.0
|
||||||
com.facebook.conceal:conceal:1.1.3
|
com.facebook.conceal:conceal:1.1.3
|
||||||
com.facebook.fbjni:fbjni:0.3.0
|
com.facebook.fbjni:fbjni:0.5.1
|
||||||
com.facebook.fresco:animated-base:2.5.0
|
com.facebook.fresco:animated-base:2.5.0
|
||||||
com.facebook.fresco:animated-drawable:2.5.0
|
com.facebook.fresco:animated-drawable:2.5.0
|
||||||
com.facebook.fresco:animated-gif:2.5.0
|
com.facebook.fresco:animated-gif:2.5.0
|
||||||
com.facebook.fresco:drawee:2.5.0
|
com.facebook.fresco:drawee:2.5.0
|
||||||
|
com.facebook.fresco:drawee:3.1.3
|
||||||
com.facebook.fresco:fbcore:2.5.0
|
com.facebook.fresco:fbcore:2.5.0
|
||||||
|
com.facebook.fresco:fbcore:3.1.3
|
||||||
com.facebook.fresco:fresco:2.5.0
|
com.facebook.fresco:fresco:2.5.0
|
||||||
|
com.facebook.fresco:fresco:3.1.3
|
||||||
com.facebook.fresco:imagepipeline-base:2.5.0
|
com.facebook.fresco:imagepipeline-base:2.5.0
|
||||||
|
com.facebook.fresco:imagepipeline-base:3.1.3
|
||||||
com.facebook.fresco:imagepipeline-native:2.5.0
|
com.facebook.fresco:imagepipeline-native:2.5.0
|
||||||
com.facebook.fresco:imagepipeline-okhttp3:2.5.0
|
com.facebook.fresco:imagepipeline-native:3.1.3
|
||||||
|
com.facebook.fresco:imagepipeline-okhttp3:3.1.3
|
||||||
com.facebook.fresco:imagepipeline:2.5.0
|
com.facebook.fresco:imagepipeline:2.5.0
|
||||||
|
com.facebook.fresco:imagepipeline:3.1.3
|
||||||
com.facebook.fresco:memory-type-ashmem:2.5.0
|
com.facebook.fresco:memory-type-ashmem:2.5.0
|
||||||
|
com.facebook.fresco:memory-type-ashmem:3.1.3
|
||||||
com.facebook.fresco:memory-type-java:2.5.0
|
com.facebook.fresco:memory-type-java:2.5.0
|
||||||
|
com.facebook.fresco:memory-type-java:3.1.3
|
||||||
com.facebook.fresco:memory-type-native:2.5.0
|
com.facebook.fresco:memory-type-native:2.5.0
|
||||||
com.facebook.fresco:middleware:2.5.0
|
com.facebook.fresco:memory-type-native:3.1.3
|
||||||
|
com.facebook.fresco:middleware:3.1.3
|
||||||
com.facebook.fresco:nativeimagefilters:2.5.0
|
com.facebook.fresco:nativeimagefilters:2.5.0
|
||||||
|
com.facebook.fresco:nativeimagefilters:3.1.3
|
||||||
com.facebook.fresco:nativeimagetranscoder:2.5.0
|
com.facebook.fresco:nativeimagetranscoder:2.5.0
|
||||||
com.facebook.fresco:soloader:2.5.0
|
com.facebook.fresco:nativeimagetranscoder:3.1.3
|
||||||
com.facebook.fresco:ui-common:2.5.0
|
com.facebook.fresco:soloader:3.1.3
|
||||||
|
com.facebook.fresco:ui-common:3.1.3
|
||||||
com.facebook.infer.annotation:infer-annotation:0.18.0
|
com.facebook.infer.annotation:infer-annotation:0.18.0
|
||||||
com.facebook.react:hermes-android:0.72.5
|
com.facebook.react:hermes-android:0.73.5
|
||||||
com.facebook.react:react-android:0.72.5
|
com.facebook.react:react-android:0.73.5
|
||||||
com.facebook.soloader:annotation:0.10.5
|
com.facebook.soloader:annotation:0.10.5
|
||||||
com.facebook.soloader:nativeloader:0.10.5
|
com.facebook.soloader:nativeloader:0.10.5
|
||||||
com.facebook.soloader:soloader:0.10.5
|
com.facebook.soloader:soloader:0.10.5
|
||||||
|
@ -517,6 +543,7 @@ com.github.wix-playground:ahbottomnavigation:3.3.0
|
||||||
com.github.wix-playground:reflow-animator:1.0.6
|
com.github.wix-playground:reflow-animator:1.0.6
|
||||||
com.github.yalantis:ucrop:2.2.6-native
|
com.github.yalantis:ucrop:2.2.6-native
|
||||||
com.googlecode.concurrent-trees:concurrent-trees:2.6.1
|
com.googlecode.concurrent-trees:concurrent-trees:2.6.1
|
||||||
|
com.googlecode.javaewah:JavaEWAH:1.1.12
|
||||||
com.googlecode.javaewah:JavaEWAH:1.1.13
|
com.googlecode.javaewah:JavaEWAH:1.1.13
|
||||||
com.googlecode.json-simple:json-simple:1.1
|
com.googlecode.json-simple:json-simple:1.1
|
||||||
com.googlecode.juniversalchardet:juniversalchardet:1.0.3
|
com.googlecode.juniversalchardet:juniversalchardet:1.0.3
|
||||||
|
@ -545,6 +572,7 @@ com.google.code.gson:gson:2.8.5
|
||||||
com.google.code.gson:gson:2.8.6
|
com.google.code.gson:gson:2.8.6
|
||||||
com.google.code.gson:gson:2.8.9
|
com.google.code.gson:gson:2.8.9
|
||||||
com.google.crypto.tink:tink:1.3.0-rc2
|
com.google.crypto.tink:tink:1.3.0-rc2
|
||||||
|
com.google.crypto.tink:tink:1.7.0
|
||||||
com.google.dagger:dagger:2.28.3
|
com.google.dagger:dagger:2.28.3
|
||||||
com.google.errorprone:error_prone_annotations:2.0.18
|
com.google.errorprone:error_prone_annotations:2.0.18
|
||||||
com.google.errorprone:error_prone_annotations:2.2.0
|
com.google.errorprone:error_prone_annotations:2.2.0
|
||||||
|
@ -552,8 +580,8 @@ com.google.errorprone:error_prone_annotations:2.3.1
|
||||||
com.google.errorprone:error_prone_annotations:2.3.2
|
com.google.errorprone:error_prone_annotations:2.3.2
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
com.google.errorprone:error_prone_annotations:2.3.4
|
||||||
com.google.errorprone:error_prone_annotations:2.4.0
|
com.google.errorprone:error_prone_annotations:2.4.0
|
||||||
com.google.errorprone:error_prone_annotations:2.7.1
|
|
||||||
com.google.errorprone:error_prone_annotations:2.9.0
|
com.google.errorprone:error_prone_annotations:2.9.0
|
||||||
|
com.google.errorprone:error_prone_annotations:2.11.0
|
||||||
com.google.firebase:firebase-annotations:16.0.0
|
com.google.firebase:firebase-annotations:16.0.0
|
||||||
com.google.firebase:firebase-components:16.1.0
|
com.google.firebase:firebase-components:16.1.0
|
||||||
com.google.firebase:firebase-encoders-json:17.1.0
|
com.google.firebase:firebase-encoders-json:17.1.0
|
||||||
|
@ -567,7 +595,7 @@ com.google.guava:guava:27.0.1-jre
|
||||||
com.google.guava:guava:28.1-jre
|
com.google.guava:guava:28.1-jre
|
||||||
com.google.guava:guava:29.0-jre
|
com.google.guava:guava:29.0-jre
|
||||||
com.google.guava:guava:30.1-jre
|
com.google.guava:guava:30.1-jre
|
||||||
com.google.guava:guava:31.0.1-jre
|
com.google.guava:guava:31.1-jre
|
||||||
com.google.guava:listenablefuture:1.0
|
com.google.guava:listenablefuture:1.0
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
com.google.j2objc:j2objc-annotations:1.1
|
||||||
|
@ -582,10 +610,12 @@ com.google.prefab:cli:2.0.0
|
||||||
com.google.protobuf:protobuf-java-util:3.4.0
|
com.google.protobuf:protobuf-java-util:3.4.0
|
||||||
com.google.protobuf:protobuf-java-util:3.10.0
|
com.google.protobuf:protobuf-java-util:3.10.0
|
||||||
com.google.protobuf:protobuf-java-util:3.17.2
|
com.google.protobuf:protobuf-java-util:3.17.2
|
||||||
|
com.google.protobuf:protobuf-java-util:3.19.3
|
||||||
com.google.protobuf:protobuf-java:3.0.0
|
com.google.protobuf:protobuf-java:3.0.0
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
com.google.protobuf:protobuf-java:3.4.0
|
||||||
com.google.protobuf:protobuf-java:3.10.0
|
com.google.protobuf:protobuf-java:3.10.0
|
||||||
com.google.protobuf:protobuf-java:3.17.2
|
com.google.protobuf:protobuf-java:3.17.2
|
||||||
|
com.google.protobuf:protobuf-java:3.19.3
|
||||||
com.google.testing.platform:core-proto:0.0.8-alpha04
|
com.google.testing.platform:core-proto:0.0.8-alpha04
|
||||||
com.google.testing.platform:core-proto:0.0.8-alpha07
|
com.google.testing.platform:core-proto:0.0.8-alpha07
|
||||||
com.google.testing.platform:core-proto:0.0.8-alpha08
|
com.google.testing.platform:core-proto:0.0.8-alpha08
|
||||||
|
@ -617,38 +647,56 @@ de.undercouch:gradle-download-task:4.1.1
|
||||||
de.undercouch:gradle-download-task:5.0.1
|
de.undercouch:gradle-download-task:5.0.1
|
||||||
io.grpc:grpc-api:1.21.1
|
io.grpc:grpc-api:1.21.1
|
||||||
io.grpc:grpc-api:1.39.0
|
io.grpc:grpc-api:1.39.0
|
||||||
|
io.grpc:grpc-api:1.45.1
|
||||||
io.grpc:grpc-context:1.21.1
|
io.grpc:grpc-context:1.21.1
|
||||||
io.grpc:grpc-context:1.39.0
|
io.grpc:grpc-context:1.39.0
|
||||||
|
io.grpc:grpc-context:1.45.1
|
||||||
io.grpc:grpc-core:1.21.1
|
io.grpc:grpc-core:1.21.1
|
||||||
io.grpc:grpc-core:1.39.0
|
io.grpc:grpc-core:1.39.0
|
||||||
|
io.grpc:grpc-core:1.45.1
|
||||||
io.grpc:grpc-netty:1.21.1
|
io.grpc:grpc-netty:1.21.1
|
||||||
io.grpc:grpc-netty:1.39.0
|
io.grpc:grpc-netty:1.39.0
|
||||||
|
io.grpc:grpc-netty:1.45.1
|
||||||
io.grpc:grpc-protobuf-lite:1.21.1
|
io.grpc:grpc-protobuf-lite:1.21.1
|
||||||
io.grpc:grpc-protobuf-lite:1.39.0
|
io.grpc:grpc-protobuf-lite:1.39.0
|
||||||
|
io.grpc:grpc-protobuf-lite:1.45.1
|
||||||
io.grpc:grpc-protobuf:1.21.1
|
io.grpc:grpc-protobuf:1.21.1
|
||||||
io.grpc:grpc-protobuf:1.39.0
|
io.grpc:grpc-protobuf:1.39.0
|
||||||
|
io.grpc:grpc-protobuf:1.45.1
|
||||||
io.grpc:grpc-stub:1.21.1
|
io.grpc:grpc-stub:1.21.1
|
||||||
io.grpc:grpc-stub:1.39.0
|
io.grpc:grpc-stub:1.39.0
|
||||||
|
io.grpc:grpc-stub:1.45.1
|
||||||
io.netty:netty-buffer:4.1.34.Final
|
io.netty:netty-buffer:4.1.34.Final
|
||||||
io.netty:netty-buffer:4.1.52.Final
|
io.netty:netty-buffer:4.1.52.Final
|
||||||
|
io.netty:netty-buffer:4.1.72.Final
|
||||||
io.netty:netty-codec-http2:4.1.34.Final
|
io.netty:netty-codec-http2:4.1.34.Final
|
||||||
io.netty:netty-codec-http2:4.1.52.Final
|
io.netty:netty-codec-http2:4.1.52.Final
|
||||||
|
io.netty:netty-codec-http2:4.1.72.Final
|
||||||
io.netty:netty-codec-http:4.1.34.Final
|
io.netty:netty-codec-http:4.1.34.Final
|
||||||
io.netty:netty-codec-http:4.1.52.Final
|
io.netty:netty-codec-http:4.1.52.Final
|
||||||
|
io.netty:netty-codec-http:4.1.72.Final
|
||||||
io.netty:netty-codec-socks:4.1.34.Final
|
io.netty:netty-codec-socks:4.1.34.Final
|
||||||
io.netty:netty-codec-socks:4.1.52.Final
|
io.netty:netty-codec-socks:4.1.52.Final
|
||||||
|
io.netty:netty-codec-socks:4.1.72.Final
|
||||||
io.netty:netty-codec:4.1.34.Final
|
io.netty:netty-codec:4.1.34.Final
|
||||||
io.netty:netty-codec:4.1.52.Final
|
io.netty:netty-codec:4.1.52.Final
|
||||||
|
io.netty:netty-codec:4.1.72.Final
|
||||||
io.netty:netty-common:4.1.34.Final
|
io.netty:netty-common:4.1.34.Final
|
||||||
io.netty:netty-common:4.1.52.Final
|
io.netty:netty-common:4.1.52.Final
|
||||||
|
io.netty:netty-common:4.1.72.Final
|
||||||
io.netty:netty-handler-proxy:4.1.34.Final
|
io.netty:netty-handler-proxy:4.1.34.Final
|
||||||
io.netty:netty-handler-proxy:4.1.52.Final
|
io.netty:netty-handler-proxy:4.1.52.Final
|
||||||
|
io.netty:netty-handler-proxy:4.1.72.Final
|
||||||
io.netty:netty-handler:4.1.34.Final
|
io.netty:netty-handler:4.1.34.Final
|
||||||
io.netty:netty-handler:4.1.52.Final
|
io.netty:netty-handler:4.1.52.Final
|
||||||
|
io.netty:netty-handler:4.1.72.Final
|
||||||
io.netty:netty-resolver:4.1.34.Final
|
io.netty:netty-resolver:4.1.34.Final
|
||||||
io.netty:netty-resolver:4.1.52.Final
|
io.netty:netty-resolver:4.1.52.Final
|
||||||
|
io.netty:netty-resolver:4.1.72.Final
|
||||||
|
io.netty:netty-tcnative-classes:2.0.46.Final
|
||||||
io.netty:netty-transport:4.1.34.Final
|
io.netty:netty-transport:4.1.34.Final
|
||||||
io.netty:netty-transport:4.1.52.Final
|
io.netty:netty-transport:4.1.52.Final
|
||||||
|
io.netty:netty-transport:4.1.72.Final
|
||||||
io.opencensus:opencensus-api:0.21.0
|
io.opencensus:opencensus-api:0.21.0
|
||||||
io.opencensus:opencensus-contrib-grpc-metrics:0.21.0
|
io.opencensus:opencensus-contrib-grpc-metrics:0.21.0
|
||||||
io.perfmark:perfmark-api:0.23.0
|
io.perfmark:perfmark-api:0.23.0
|
||||||
|
@ -686,6 +734,7 @@ org.antlr:antlr:3.5.2
|
||||||
org.apache.commons:commons-compress:1.8.1
|
org.apache.commons:commons-compress:1.8.1
|
||||||
org.apache.commons:commons-compress:1.12
|
org.apache.commons:commons-compress:1.12
|
||||||
org.apache.commons:commons-compress:1.20
|
org.apache.commons:commons-compress:1.20
|
||||||
|
org.apache.commons:commons-compress:1.21
|
||||||
org.apache.commons:commons-lang3:3.3.2
|
org.apache.commons:commons-lang3:3.3.2
|
||||||
org.apache.commons:commons-lang3:3.9
|
org.apache.commons:commons-lang3:3.9
|
||||||
org.apache.httpcomponents:httpclient:4.1.1
|
org.apache.httpcomponents:httpclient:4.1.1
|
||||||
|
@ -700,6 +749,7 @@ org.apache.httpcomponents:httpcore:4.4.5
|
||||||
org.apache.httpcomponents:httpcore:4.4.10
|
org.apache.httpcomponents:httpcore:4.4.10
|
||||||
org.apache.httpcomponents:httpcore:4.4.11
|
org.apache.httpcomponents:httpcore:4.4.11
|
||||||
org.apache.httpcomponents:httpcore:4.4.13
|
org.apache.httpcomponents:httpcore:4.4.13
|
||||||
|
org.apache.httpcomponents:httpcore:4.4.15
|
||||||
org.apache.httpcomponents:httpmime:4.1
|
org.apache.httpcomponents:httpmime:4.1
|
||||||
org.apache.httpcomponents:httpmime:4.5.2
|
org.apache.httpcomponents:httpmime:4.5.2
|
||||||
org.apache.httpcomponents:httpmime:4.5.6
|
org.apache.httpcomponents:httpmime:4.5.6
|
||||||
|
@ -717,16 +767,18 @@ org.checkerframework:checker-qual:2.8.1
|
||||||
org.checkerframework:checker-qual:2.11.1
|
org.checkerframework:checker-qual:2.11.1
|
||||||
org.checkerframework:checker-qual:3.5.0
|
org.checkerframework:checker-qual:3.5.0
|
||||||
org.checkerframework:checker-qual:3.12.0
|
org.checkerframework:checker-qual:3.12.0
|
||||||
|
org.codehaus.groovy:groovy-xml:3.0.9
|
||||||
org.codehaus.groovy:groovy-xml:3.0.10
|
org.codehaus.groovy:groovy-xml:3.0.10
|
||||||
|
org.codehaus.groovy:groovy:3.0.9
|
||||||
org.codehaus.groovy:groovy:3.0.10
|
org.codehaus.groovy:groovy:3.0.10
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.18
|
org.codehaus.mojo:animal-sniffer-annotations:1.18
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.19
|
org.codehaus.mojo:animal-sniffer-annotations:1.19
|
||||||
org.codehaus.woodstox:stax2-api:4.2.1
|
org.codehaus.woodstox:stax2-api:4.2.1
|
||||||
org.conscrypt:conscrypt-android:2.0.0
|
|
||||||
org.eclipse.jdt.core.compiler:ecj:4.4.2
|
org.eclipse.jdt.core.compiler:ecj:4.4.2
|
||||||
org.eclipse.jdt.core.compiler:ecj:4.6.1
|
org.eclipse.jdt.core.compiler:ecj:4.6.1
|
||||||
|
org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r
|
||||||
org.eclipse.jgit:org.eclipse.jgit:5.13.1.202206130422-r
|
org.eclipse.jgit:org.eclipse.jgit:5.13.1.202206130422-r
|
||||||
org.fusesource.jansi:jansi:1.18
|
org.fusesource.jansi:jansi:1.18
|
||||||
org.glassfish.jaxb:jaxb-core:2.2.11
|
org.glassfish.jaxb:jaxb-core:2.2.11
|
||||||
|
@ -738,23 +790,22 @@ org.glassfish.jaxb:txw2:2.3.1
|
||||||
org.glassfish.jaxb:txw2:2.3.2
|
org.glassfish.jaxb:txw2:2.3.2
|
||||||
org.hamcrest:hamcrest-core:1.3
|
org.hamcrest:hamcrest-core:1.3
|
||||||
org.hamcrest:hamcrest:2.2
|
org.hamcrest:hamcrest:2.2
|
||||||
org.jacoco:org.jacoco.agent:0.8.8
|
|
||||||
org.jacoco:org.jacoco.ant:0.8.8
|
|
||||||
org.jacoco:org.jacoco.core:0.7.4.201502262128
|
org.jacoco:org.jacoco.core:0.7.4.201502262128
|
||||||
org.jacoco:org.jacoco.core:0.8.8
|
|
||||||
org.jacoco:org.jacoco.report:0.7.4.201502262128
|
org.jacoco:org.jacoco.report:0.7.4.201502262128
|
||||||
org.jacoco:org.jacoco.report:0.8.8
|
|
||||||
org.jdom:jdom2:2.0.6
|
org.jdom:jdom2:2.0.6
|
||||||
org.jetbrains.dokka:dokka-core:1.4.32
|
org.jetbrains.dokka:dokka-core:1.4.32
|
||||||
org.jetbrains.intellij.deps:trove4j:1.0.20181211
|
org.jetbrains.intellij.deps:trove4j:1.0.20181211
|
||||||
org.jetbrains.intellij.deps:trove4j:1.0.20200330
|
org.jetbrains.intellij.deps:trove4j:1.0.20200330
|
||||||
org.jetbrains.kotlinx:atomicfu:0.16.3
|
org.jetbrains.kotlinx:atomicfu:0.16.3
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2
|
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2
|
||||||
|
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1
|
||||||
|
org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.1
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.4.1
|
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.4.1
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0
|
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2
|
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1
|
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
||||||
|
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1
|
||||||
org.jetbrains.kotlin:kotlin-android-extensions:1.6.20
|
org.jetbrains.kotlin:kotlin-android-extensions:1.6.20
|
||||||
org.jetbrains.kotlin:kotlin-android-extensions:1.9.0
|
org.jetbrains.kotlin:kotlin-android-extensions:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72
|
org.jetbrains.kotlin:kotlin-annotations-jvm:1.3.72
|
||||||
|
@ -794,7 +845,7 @@ org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||||
org.jetbrains.kotlin:kotlin-reflect:1.4.32
|
org.jetbrains.kotlin:kotlin-reflect:1.4.32
|
||||||
org.jetbrains.kotlin:kotlin-reflect:1.5.31
|
org.jetbrains.kotlin:kotlin-reflect:1.5.31
|
||||||
org.jetbrains.kotlin:kotlin-reflect:1.6.10
|
org.jetbrains.kotlin:kotlin-reflect:1.6.10
|
||||||
org.jetbrains.kotlin:kotlin-reflect:1.7.10
|
org.jetbrains.kotlin:kotlin-reflect:1.8.20-RC2
|
||||||
org.jetbrains.kotlin:kotlin-scripting-common:1.6.20
|
org.jetbrains.kotlin:kotlin-scripting-common:1.6.20
|
||||||
org.jetbrains.kotlin:kotlin-scripting-common:1.9.0
|
org.jetbrains.kotlin:kotlin-scripting-common:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.20
|
org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.20
|
||||||
|
@ -810,7 +861,8 @@ org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.7.22
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.8.20-RC2
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.8.21
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0
|
org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50
|
||||||
|
@ -818,14 +870,16 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.20
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.20
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.22
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20-RC2
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.0
|
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.32
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.32
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.22
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20-RC2
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21
|
||||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2
|
org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.2.71
|
org.jetbrains.kotlin:kotlin-stdlib:1.2.71
|
||||||
|
@ -834,7 +888,8 @@ org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.4.32
|
org.jetbrains.kotlin:kotlin-stdlib:1.4.32
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|
org.jetbrains.kotlin:kotlin-stdlib:1.5.31
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.6.20
|
org.jetbrains.kotlin:kotlin-stdlib:1.6.20
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.7.22
|
org.jetbrains.kotlin:kotlin-stdlib:1.8.20-RC2
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib:1.8.21
|
||||||
org.jetbrains.kotlin:kotlin-stdlib:1.9.0
|
org.jetbrains.kotlin:kotlin-stdlib:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-tooling-core:1.9.0
|
org.jetbrains.kotlin:kotlin-tooling-core:1.9.0
|
||||||
org.jetbrains.kotlin:kotlin-tooling-metadata:1.6.20
|
org.jetbrains.kotlin:kotlin-tooling-metadata:1.6.20
|
||||||
|
@ -906,8 +961,11 @@ com.squareup.okio:okio:1.13.0
|
||||||
com.squareup.okio:okio:1.15.0
|
com.squareup.okio:okio:1.15.0
|
||||||
com.squareup.okhttp3:okhttp:3.12.1
|
com.squareup.okhttp3:okhttp:3.12.1
|
||||||
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.7.22
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.7.22
|
||||||
com.android.tools.lint:lint-gradle:30.4.2
|
|
||||||
com.android.tools.build:gradle:7.4.2
|
|
||||||
com.android.tools.build:aapt2:7.4.2-8841542
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
||||||
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.0
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.0
|
||||||
|
org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin:0.5.0
|
||||||
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.8.0
|
||||||
|
com.android.tools.build:gradle:8.1.1
|
||||||
|
com.google.errorprone:error_prone_annotations:2.7.1
|
||||||
|
com.android.tools.lint:lint-gradle:31.1.1
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0
|
File diff suppressed because it is too large
Load Diff
|
@ -47,11 +47,14 @@ com.squareup.okio:okio:1.13.0
|
||||||
com.squareup.okio:okio:1.15.0
|
com.squareup.okio:okio:1.15.0
|
||||||
com.squareup.okhttp3:okhttp:3.12.1
|
com.squareup.okhttp3:okhttp:3.12.1
|
||||||
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.7.22
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.7.22
|
||||||
com.android.tools.lint:lint-gradle:30.4.2
|
|
||||||
com.android.tools.build:gradle:7.4.2
|
|
||||||
com.android.tools.build:aapt2:7.4.2-8841542
|
|
||||||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2
|
||||||
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.0' \
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.0
|
||||||
|
org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin:0.5.0
|
||||||
|
org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.8.0
|
||||||
|
com.android.tools.build:gradle:8.1.1
|
||||||
|
com.google.errorprone:error_prone_annotations:2.7.1
|
||||||
|
com.android.tools.lint:lint-gradle:31.1.1
|
||||||
|
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0' \
|
||||||
>> "${DEPS_LIST}"
|
>> "${DEPS_LIST}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ react-native-blob-util
|
||||||
react-native-blur
|
react-native-blur
|
||||||
react-native-camera-kit
|
react-native-camera-kit
|
||||||
react-native-camera-roll_camera-roll
|
react-native-camera-roll_camera-roll
|
||||||
|
react-native-clipboard_clipboard
|
||||||
react-native-community_audio-toolkit
|
react-native-community_audio-toolkit
|
||||||
react-native-community_clipboard
|
|
||||||
react-native-community_masked-view
|
react-native-community_masked-view
|
||||||
react-native-community_netinfo
|
react-native-community_netinfo
|
||||||
react-native-community_slider
|
react-native-community_slider
|
||||||
|
|
|
@ -12,7 +12,8 @@ stdenv.mkDerivation {
|
||||||
"patchBuildIdPhase"
|
"patchBuildIdPhase"
|
||||||
"patchKeyChainPhase"
|
"patchKeyChainPhase"
|
||||||
"patchGlogPhase"
|
"patchGlogPhase"
|
||||||
"patchBoostPodSpec"
|
"patchNativeNavigationPhase"
|
||||||
|
"patchRNScriptPhase"
|
||||||
"installPhase"
|
"installPhase"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -78,12 +79,20 @@ stdenv.mkDerivation {
|
||||||
--replace 'export CXX="' '#export CXX="'
|
--replace 'export CXX="' '#export CXX="'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# to fix pod checksum issue : https://github.com/facebook/react-native/issues/42180
|
# https://github.com/wix/react-native-navigation/issues/7819
|
||||||
# TODO remove this patch after upgrading to react-native 0.73.2
|
patchNativeNavigationPhase = ''
|
||||||
patchBoostPodSpec = ''
|
substituteInPlace ./node_modules/react-native-navigation/lib/android/app/build.gradle \
|
||||||
substituteInPlace ./node_modules/react-native/third-party-podspecs/boost.podspec \
|
--replace 'JavaVersion.VERSION_1_8' 'JavaVersion.VERSION_17'
|
||||||
--replace 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2' \
|
|
||||||
'https://sourceforge.net/projects/boost/files/boost/1.76.0/boost_1_76_0.tar.bz2' \
|
substituteInPlace ./node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/stack/topbar/button/ButtonPresenter.kt \
|
||||||
|
--replace 'host: View?,' 'host: View,' \
|
||||||
|
--replace 'info: AccessibilityNodeInfoCompat?' 'info: AccessibilityNodeInfoCompat'
|
||||||
|
'';
|
||||||
|
|
||||||
|
# to fix https://github.com/status-im/status-mobile/issues/18548
|
||||||
|
patchRNScriptPhase = ''
|
||||||
|
substituteInPlace ./node_modules/react-native/scripts/react_native_pods_utils/script_phases.sh \
|
||||||
|
--replace 'cp -R -X' 'cp -R'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# The ELF types are incompatible with the host platform, so let's not even try
|
# The ELF types are incompatible with the host platform, so let's not even try
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ lib, stdenv, callPackage, mkShell,
|
{ lib, stdenv, callPackage, mkShell,
|
||||||
bundlerEnv, cocoapods, bundler, ruby, curl }:
|
bundlerEnv, cocoapods, bundler, ruby, curl, clang }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) optionals optionalString unique;
|
inherit (lib) optionals optionalString unique;
|
||||||
|
@ -14,7 +14,7 @@ let
|
||||||
|
|
||||||
inherit (fastlane) shellHook;
|
inherit (fastlane) shellHook;
|
||||||
|
|
||||||
buildInputs = [ ruby bundler fastlane curl ]
|
buildInputs = [ ruby bundler fastlane curl clang ]
|
||||||
++ optionals stdenv.isDarwin [ cocoapods ];
|
++ optionals stdenv.isDarwin [ cocoapods ];
|
||||||
in {
|
in {
|
||||||
# HELPERS
|
# HELPERS
|
||||||
|
|
|
@ -51,7 +51,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
# Package version adjustments
|
# Package version adjustments
|
||||||
gradle = super.gradle_8;
|
gradle = super.gradle_8_3;
|
||||||
nodejs = super.nodejs-18_x;
|
nodejs = super.nodejs-18_x;
|
||||||
ruby = super.ruby_3_1;
|
ruby = super.ruby_3_1;
|
||||||
yarn = super.yarn.override { nodejs = super.nodejs-18_x; };
|
yarn = super.yarn.override { nodejs = super.nodejs-18_x; };
|
||||||
|
|
|
@ -6,10 +6,10 @@ let
|
||||||
# For testing local version of nixpkgs
|
# For testing local version of nixpkgs
|
||||||
#nixpkgsSrc = (import <nixpkgs> { }).lib.cleanSource "/home/jakubgs/work/nixpkgs";
|
#nixpkgsSrc = (import <nixpkgs> { }).lib.cleanSource "/home/jakubgs/work/nixpkgs";
|
||||||
|
|
||||||
# We follow the master branch of official nixpkgs.
|
# We follow a fork of nixpkgs where we bump gradle to 8.3 and update build tools
|
||||||
nixpkgsSrc = builtins.fetchTarball {
|
nixpkgsSrc = builtins.fetchTarball {
|
||||||
url = "https://github.com/NixOS/nixpkgs/archive/e7603eba51f2c7820c0a182c6bbb351181caa8e7.tar.gz";
|
url = "https://github.com/status-im/nixpkgs/archive/44d8b23ebbe40ed16ef1aecef6c5354657c48b19.tar.gz";
|
||||||
sha256 = "sha256:0mwck8jyr74wh1b7g6nac1mxy6a0rkppz8n12andsffybsipz5jw";
|
sha256 = "sha256:0s7kjnc8drchzp268yzbv5snc4702hswcns9hrncjq4im8cv6mf9";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Status specific configuration defaults
|
# Status specific configuration defaults
|
||||||
|
|
|
@ -10,7 +10,7 @@ let
|
||||||
|
|
||||||
pname = "aapt2";
|
pname = "aapt2";
|
||||||
# Warning: This must be the same as gradlePluginVersion android/gradle.properties
|
# Warning: This must be the same as gradlePluginVersion android/gradle.properties
|
||||||
version = "7.4.2-8841542";
|
version = "8.1.1-10154469";
|
||||||
|
|
||||||
pkgPath = "com/android/tools/build/aapt2";
|
pkgPath = "com/android/tools/build/aapt2";
|
||||||
repoUrl = "https://dl.google.com/dl/android/maven2";
|
repoUrl = "https://dl.google.com/dl/android/maven2";
|
||||||
|
@ -29,20 +29,20 @@ let
|
||||||
jar = fetchurl {
|
jar = fetchurl {
|
||||||
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}";
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}";
|
||||||
sha256 = getAttr platform {
|
sha256 = getAttr platform {
|
||||||
linux = "sha256-bHKE8i7QbE0UFgn1TW4gzPj7MBV7t/PVo+Txd6jW0wE=";
|
linux = "sha256-p54GGvEfAo0yk8euVO7QTu/c3zuityZhyGdhFSV6w+E=";
|
||||||
osx = "sha256-Gmm9dnu2+OccqfqsUiKeanc4FNNkk7lCO0YAoxACjl0=";
|
osx = "sha256-bO4ljdUEfbuns7EyT1FKGLqNGz+0bms5XsplXvzD2T0=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
sha = fetchurl {
|
sha = fetchurl {
|
||||||
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}.sha1";
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}.sha1";
|
||||||
sha256 = getAttr platform {
|
sha256 = getAttr platform {
|
||||||
linux = "sha256-mSbHKU3snj5NTg3MN37pmVnVnYRKI9yoMVNJGuUXTso=";
|
linux = "sha256-oUJOQ9j/sJ7Yt0V9WOrRmuqYI+2UWZxeefJ/WyNoWgw=";
|
||||||
osx = "sha256-V/t81ELdzRFoMPSD8wSgbtdQgmUkkOdqRu2iqKIeNVg=";
|
osx = "sha256-w+q2j4MKtIOihPMaJxuIP9IwXvRIyBxgRIJLox4E7ac=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
pom = fetchurl {
|
pom = fetchurl {
|
||||||
url = "${repoUrl}/${pkgPath}/${version}/${filenames.pom}";
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.pom}";
|
||||||
sha256 = "sha256-9gY2kGJqgVcd1T3UOzYM+xoPug/eGBRUF+cA6Fu9ZRw=";
|
sha256 = "sha256-UdUGCoMmEfJxBS2demYKGdG4lzd2DqQbDUCHt/h7Ohg=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,8 @@ androidenv.composeAndroidPackages {
|
||||||
cmdLineToolsVersion = "9.0";
|
cmdLineToolsVersion = "9.0";
|
||||||
toolsVersion = "26.1.1";
|
toolsVersion = "26.1.1";
|
||||||
platformToolsVersion = "33.0.3";
|
platformToolsVersion = "33.0.3";
|
||||||
buildToolsVersions = [ "33.0.0" ];
|
buildToolsVersions = [ "34.0.0" ];
|
||||||
platformVersions = [ "33" ];
|
platformVersions = [ "34" ];
|
||||||
cmakeVersions = [ "3.22.1" ];
|
cmakeVersions = [ "3.22.1" ];
|
||||||
ndkVersion = "25.2.9519653";
|
ndkVersion = "25.2.9519653";
|
||||||
includeNDK = true;
|
includeNDK = true;
|
||||||
|
|
|
@ -5,14 +5,15 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xcbeautify";
|
pname = "xcbeautify";
|
||||||
version = "1.1.1";
|
version = "1.4.0";
|
||||||
arch = if stdenv.hostPlatform.isAarch64 then "arm64" else "x86_64";
|
arch = if stdenv.hostPlatform.isAarch64 then "arm64" else "x86_64";
|
||||||
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/tuist/xcbeautify/releases/download/${version}/xcbeautify-${version}-${arch}-apple-macosx.zip";
|
url = "https://github.com/cpisciotta/xcbeautify/releases/download/${version}/xcbeautify-${version}-${arch}-apple-macosx.zip";
|
||||||
sha256 = getAttr arch {
|
sha256 = getAttr arch {
|
||||||
arm64 = "sha256-VaZBWZNx5iZxjpsVbKQA4wVsigjlhArDCsQXY/RBDx4=";
|
arm64 = "sha256-4b4mXT5IfNOS8iOrZASDhTrmOehG4mePcoiKxR+IdZk=";
|
||||||
x86_64 = "sha256-Q1t4nHQu05mPqNRmL0KQukGRAHdkQHM7H24ar0isQTo=";
|
x86_64 = "sha256-adEfAK7n3Q/Yd1deyJx7htX7hZaGDztEeBv4z2A0wzg=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A little beautifier tool for xcodebuild";
|
description = "A little beautifier tool for xcodebuild";
|
||||||
homepage = "https://github.com/tuist/xcbeautify";
|
homepage = "https://github.com/cpisciotta/xcbeautify";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.darwin;
|
platforms = platforms.darwin;
|
||||||
};
|
};
|
||||||
|
|
|
@ -53,14 +53,6 @@ copyNodeModules() {
|
||||||
|
|
||||||
# Find files that were modified and should cause a re-copying of node modules.
|
# Find files that were modified and should cause a re-copying of node modules.
|
||||||
# Some files are generated/modified by build processes and should be ignored.
|
# Some files are generated/modified by build processes and should be ignored.
|
||||||
#
|
|
||||||
# react-native/ReactCommon/react/renderer/components/rncore/*
|
|
||||||
# generated at runtime by react-native
|
|
||||||
# related code https://github.com/facebook/react-native/blob/v0.72.5/packages/react-native/ReactCommon/React-rncore.podspec#L19
|
|
||||||
#
|
|
||||||
# react-native-config/ios/ReactNativeConfig/GeneratedDotEnv.m
|
|
||||||
# generated at runtime by react-native-config
|
|
||||||
# related code https://github.com/lugg/react-native-config/blob/v1.5.0/react-native-config.podspec#L52
|
|
||||||
findFilesNewerThan() {
|
findFilesNewerThan() {
|
||||||
local sentinel="${1}"
|
local sentinel="${1}"
|
||||||
local dir="${2}"
|
local dir="${2}"
|
||||||
|
@ -69,8 +61,14 @@ findFilesNewerThan() {
|
||||||
-not -ipath "*/*android/build/*" -prune \
|
-not -ipath "*/*android/build/*" -prune \
|
||||||
-not -ipath "*/xcuserdata/*" -prune \
|
-not -ipath "*/xcuserdata/*" -prune \
|
||||||
-not -ipath "*/scripts/.packager.env" \
|
-not -ipath "*/scripts/.packager.env" \
|
||||||
|
\ # generated at runtime by react-native \
|
||||||
|
\ # related code https://github.com/facebook/react-native/blob/v0.72.5/packages/react-native/ReactCommon/React-rncore.podspec#L19 \
|
||||||
-not -path "*/node_modules/react-native/ReactCommon/react/renderer/components/rncore/*" \
|
-not -path "*/node_modules/react-native/ReactCommon/react/renderer/components/rncore/*" \
|
||||||
|
\ # generated at runtime by react-native-config \
|
||||||
|
\ # related code https://github.com/lugg/react-native-config/blob/v1.5.0/react-native-config.podspec#L52 \
|
||||||
-not -path "*/node_modules/react-native-config/ios/ReactNativeConfig/GeneratedDotEnv.m" \
|
-not -path "*/node_modules/react-native-config/ios/ReactNativeConfig/GeneratedDotEnv.m" \
|
||||||
|
\ # generated at runtime by react-native from v0.73.x onwards \
|
||||||
|
-not -path "*/node_modules/react-native/React/Fabric/*" \
|
||||||
-print
|
-print
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
32
package.json
32
package.json
|
@ -11,15 +11,14 @@
|
||||||
"@babel/preset-typescript": "^7.17.12",
|
"@babel/preset-typescript": "^7.17.12",
|
||||||
"@react-native-async-storage/async-storage": "1.19.3",
|
"@react-native-async-storage/async-storage": "1.19.3",
|
||||||
"@react-native-camera-roll/camera-roll": "git+https://github.com/status-im/react-native-camera-roll.git#refs/tags/v5.1.1.1",
|
"@react-native-camera-roll/camera-roll": "git+https://github.com/status-im/react-native-camera-roll.git#refs/tags/v5.1.1.1",
|
||||||
|
"@react-native-clipboard/clipboard": "1.13.2",
|
||||||
"@react-native-community/audio-toolkit": "git+https://github.com/tbenr/react-native-audio-toolkit.git#refs/tags/v2.0.3-status-v6",
|
"@react-native-community/audio-toolkit": "git+https://github.com/tbenr/react-native-audio-toolkit.git#refs/tags/v2.0.3-status-v6",
|
||||||
"@react-native-community/blur": "git+https://github.com/status-im/react-native-blur.git#refs/tags/v4.3.3-status",
|
"@react-native-community/blur": "git+https://github.com/status-im/react-native-blur.git#refs/tags/v4.3.3-status",
|
||||||
"@react-native-community/clipboard": "^1.2.2",
|
|
||||||
"@react-native-community/hooks": "^3.0.0",
|
"@react-native-community/hooks": "^3.0.0",
|
||||||
"@react-native-community/masked-view": "^0.1.6",
|
"@react-native-community/masked-view": "^0.1.6",
|
||||||
"@react-native-community/netinfo": "^4.4.0",
|
"@react-native-community/netinfo": "^4.4.0",
|
||||||
"@react-native-community/push-notification-ios": "^1.4.1",
|
"@react-native-community/push-notification-ios": "^1.4.1",
|
||||||
"@react-native-community/slider": "^3.0.0",
|
"@react-native-community/slider": "^3.0.0",
|
||||||
"@react-native/metro-config": "^0.72.9",
|
|
||||||
"base-64": "^1.0.0",
|
"base-64": "^1.0.0",
|
||||||
"bignumber.js": "git+https://github.com/status-im/bignumber.js.git#refs/tags/v4.0.2-status",
|
"bignumber.js": "git+https://github.com/status-im/bignumber.js.git#refs/tags/v4.0.2-status",
|
||||||
"chance": "^1.1.0",
|
"chance": "^1.1.0",
|
||||||
|
@ -33,20 +32,20 @@
|
||||||
"node-libs-react-native": "^1.2.1",
|
"node-libs-react-native": "^1.2.1",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.0.0",
|
"react-dom": "18.0.0",
|
||||||
"react-native": "0.72.5",
|
"react-native": "0.73.5",
|
||||||
"react-native-background-timer": "^2.1.1",
|
"react-native-background-timer": "^2.1.1",
|
||||||
"react-native-biometrics": "^3.0.1",
|
"react-native-biometrics": "^3.0.1",
|
||||||
"react-native-blob-util": "^0.13.18",
|
"react-native-blob-util": "^0.13.18",
|
||||||
"react-native-camera-kit": "14.0.0-beta13",
|
"react-native-camera-kit": "14.0.0-beta13",
|
||||||
"react-native-config": "^1.5.0",
|
"react-native-config": "^1.5.0",
|
||||||
"react-native-dialogs": "^1.0.4",
|
"react-native-dialogs": "1.1.2",
|
||||||
"react-native-draggable-flatlist": "4.0.1",
|
"react-native-draggable-flatlist": "4.0.1",
|
||||||
"react-native-fast-image": "^8.5.11",
|
"react-native-fast-image": "^8.5.11",
|
||||||
"react-native-fs": "^2.14.1",
|
"react-native-fs": "^2.14.1",
|
||||||
"react-native-gesture-handler": "2.6.1",
|
"react-native-gesture-handler": "2.14.1",
|
||||||
"react-native-gifted-charts": "^1.3.2",
|
"react-native-gifted-charts": "^1.3.2",
|
||||||
"react-native-haptic-feedback": "^1.9.0",
|
"react-native-haptic-feedback": "^1.9.0",
|
||||||
"react-native-hole-view": "3.0.0-alpha3",
|
"react-native-hole-view": "^3.0.0-alpha4",
|
||||||
"react-native-image-crop-picker": "0.40.0",
|
"react-native-image-crop-picker": "0.40.0",
|
||||||
"react-native-image-resizer": "^1.2.3",
|
"react-native-image-resizer": "^1.2.3",
|
||||||
"react-native-image-viewing": "git+https://github.com/status-im/react-native-image-viewing.git#refs/tags/v0.2.1.status",
|
"react-native-image-viewing": "git+https://github.com/status-im/react-native-image-viewing.git#refs/tags/v0.2.1.status",
|
||||||
|
@ -55,14 +54,14 @@
|
||||||
"react-native-linear-gradient": "^2.8.0",
|
"react-native-linear-gradient": "^2.8.0",
|
||||||
"react-native-lottie-splash-screen": "^1.0.1",
|
"react-native-lottie-splash-screen": "^1.0.1",
|
||||||
"react-native-mail": "git+https://github.com/status-im/react-native-mail.git#refs/tags/v6.1.2-status",
|
"react-native-mail": "git+https://github.com/status-im/react-native-mail.git#refs/tags/v6.1.2-status",
|
||||||
"react-native-navigation": "7.37.0",
|
"react-native-navigation": "7.38.3",
|
||||||
"react-native-orientation-locker": "^1.5.0",
|
"react-native-orientation-locker": "^1.5.0",
|
||||||
"react-native-permissions": "3.8.0",
|
"react-native-permissions": "3.8.0",
|
||||||
"react-native-randombytes": "^3.6.1",
|
"react-native-randombytes": "^3.6.1",
|
||||||
"react-native-reanimated": "3.6.1",
|
"react-native-reanimated": "3.6.1",
|
||||||
"react-native-redash": "18.1.0",
|
"react-native-redash": "18.1.0",
|
||||||
"react-native-shake": "^3.3.1",
|
"react-native-shake": "^3.3.1",
|
||||||
"react-native-share": "^8.2.2",
|
"react-native-share": "10.0.2",
|
||||||
"react-native-static-safe-area-insets": "^2.2.0",
|
"react-native-static-safe-area-insets": "^2.2.0",
|
||||||
"react-native-status-keycard": "git+https://github.com/status-im/react-native-status-keycard.git#refs/tags/v2.5.39",
|
"react-native-status-keycard": "git+https://github.com/status-im/react-native-status-keycard.git#refs/tags/v2.5.39",
|
||||||
"react-native-svg": "13.10.0",
|
"react-native-svg": "13.10.0",
|
||||||
|
@ -82,18 +81,21 @@
|
||||||
"@babel/register": "7.0.0",
|
"@babel/register": "7.0.0",
|
||||||
"@jest/globals": "^25.1.0",
|
"@jest/globals": "^25.1.0",
|
||||||
"@mapbox/node-pre-gyp": "^1.0.9",
|
"@mapbox/node-pre-gyp": "^1.0.9",
|
||||||
|
"@react-native/babel-preset": "0.73.21",
|
||||||
|
"@react-native/codegen": "0.73.2",
|
||||||
|
"@react-native/gradle-plugin": "0.73.4",
|
||||||
|
"@react-native/metro-config": "0.73.5",
|
||||||
"@testing-library/jest-native": "^5.4.3",
|
"@testing-library/jest-native": "^5.4.3",
|
||||||
"@testing-library/react-native": "^12.4.2",
|
"@testing-library/react-native": "^12.4.2",
|
||||||
"@tsconfig/react-native": "^3.0.0",
|
"@tsconfig/react-native": "^3.0.0",
|
||||||
"@types/jest": "^28.1.6",
|
"@types/jest": "^28.1.6",
|
||||||
"@types/react": "^18.0.24",
|
"@types/react": "^18.2.6",
|
||||||
"@types/react-test-renderer": "^18.0.0",
|
"@types/react-test-renderer": "^18.0.0",
|
||||||
"babel-jest": "^29.7.0",
|
"babel-jest": "^29.6.3",
|
||||||
"concurrently": "^7.6.0",
|
"concurrently": "^7.6.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-image-snapshot": "^5.1.0",
|
"jest-image-snapshot": "^5.1.0",
|
||||||
"jest-silent-reporter": "^0.5.0",
|
"jest-silent-reporter": "^0.5.0",
|
||||||
"metro-react-native-babel-preset": "0.76.8",
|
|
||||||
"nodemon": "^2.0.16",
|
"nodemon": "^2.0.16",
|
||||||
"nyc": "^14.1.1",
|
"nyc": "^14.1.1",
|
||||||
"prettier": "^2.8.8",
|
"prettier": "^2.8.8",
|
||||||
|
@ -102,12 +104,6 @@
|
||||||
"rn-snoopy": "git+https://github.com/status-im/rn-snoopy.git#refs/tags/v2.0.2-status",
|
"rn-snoopy": "git+https://github.com/status-im/rn-snoopy.git#refs/tags/v2.0.2-status",
|
||||||
"shadow-cljs": "2.26.2"
|
"shadow-cljs": "2.26.2"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
|
||||||
"_comment": "This prevents random metro crashes till we upgrade to react-native 0.73.x",
|
|
||||||
"metro": "^0.79.1",
|
|
||||||
"metro-config": "^0.79.1",
|
|
||||||
"metro-core": "^0.79.1"
|
|
||||||
},
|
|
||||||
"binary": {
|
"binary": {
|
||||||
"module_name": "status_nodejs_addon",
|
"module_name": "status_nodejs_addon",
|
||||||
"module_path": "./lib/binding/",
|
"module_path": "./lib/binding/",
|
||||||
|
@ -115,6 +111,6 @@
|
||||||
"remote_path": "{version}"
|
"remote_path": "{version}"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16"
|
"node": ">=18"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
(ns legacy.status-im.ui.components.react
|
(ns legacy.status-im.ui.components.react
|
||||||
(:require
|
(:require
|
||||||
|
["@react-native-clipboard/clipboard" :default Clipboard]
|
||||||
["@react-native-community/blur" :as blur]
|
["@react-native-community/blur" :as blur]
|
||||||
["@react-native-community/clipboard" :default Clipboard]
|
|
||||||
["@react-native-community/masked-view" :default MaskedView]
|
["@react-native-community/masked-view" :default MaskedView]
|
||||||
["react" :as reactjs]
|
["react" :as reactjs]
|
||||||
["react-native" :as react-native :refer (Keyboard BackHandler)]
|
["react-native" :as react-native :refer (Keyboard BackHandler)]
|
||||||
|
|
|
@ -163,6 +163,11 @@
|
||||||
#js
|
#js
|
||||||
{:MediaStates {}
|
{:MediaStates {}
|
||||||
:PlaybackCategories {}})
|
:PlaybackCategories {}})
|
||||||
|
|
||||||
|
(def react-native-clipboard
|
||||||
|
#js
|
||||||
|
{:getEnforcing {}})
|
||||||
|
|
||||||
(def net-info #js {})
|
(def net-info #js {})
|
||||||
(def react-native-biometrics #js {:default {}})
|
(def react-native-biometrics #js {:default {}})
|
||||||
(def react-native-image-viewing #js {:default {}})
|
(def react-native-image-viewing #js {:default {}})
|
||||||
|
@ -415,6 +420,7 @@
|
||||||
"react-native-draggable-flatlist" react-native-draggable-flatlist
|
"react-native-draggable-flatlist" react-native-draggable-flatlist
|
||||||
"react-native-webview" react-native-webview
|
"react-native-webview" react-native-webview
|
||||||
"@react-native-community/audio-toolkit" react-native-audio-toolkit
|
"@react-native-community/audio-toolkit" react-native-audio-toolkit
|
||||||
|
"@react-native-clipboard/clipboard" react-native-clipboard
|
||||||
"react-native-image-viewing" react-native-image-viewing
|
"react-native-image-viewing" react-native-image-viewing
|
||||||
"react-native-share" react-native-share
|
"react-native-share" react-native-share
|
||||||
"@react-native-async-storage/async-storage" async-storage
|
"@react-native-async-storage/async-storage" async-storage
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
show-emoji-hash? 12
|
show-emoji-hash? 12
|
||||||
:else 10)
|
:else 10)
|
||||||
border-bottom-radius (if (or (not login-card?) last-item?) 16 0)]
|
border-bottom-radius (if (or (not login-card?) last-item?) 16 0)]
|
||||||
[rn/touchable-without-feedback
|
[rn/pressable
|
||||||
{:on-press on-card-press
|
{:on-press on-card-press
|
||||||
:accessibility-label :profile-card}
|
:accessibility-label :profile-card}
|
||||||
[hole-view/hole-view
|
[hole-view/hole-view
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns react-native.clipboard
|
(ns react-native.clipboard
|
||||||
(:require
|
(:require
|
||||||
["@react-native-community/clipboard" :default Clipboard]))
|
["@react-native-clipboard/clipboard" :default Clipboard]))
|
||||||
|
|
||||||
(defn set-string
|
(defn set-string
|
||||||
[text]
|
[text]
|
||||||
|
|
|
@ -48,6 +48,21 @@ jest.mock('react-native-static-safe-area-insets', () => ({
|
||||||
|
|
||||||
jest.mock('react-native-permissions', () => require('react-native-permissions/mock'));
|
jest.mock('react-native-permissions', () => require('react-native-permissions/mock'));
|
||||||
|
|
||||||
|
jest.mock('@react-native-clipboard/clipboard', () => ({
|
||||||
|
getString: jest.fn().mockResolvedValue('mockString'),
|
||||||
|
getImagePNG: jest.fn(),
|
||||||
|
getImageJPG: jest.fn(),
|
||||||
|
setImage: jest.fn(),
|
||||||
|
setString: jest.fn(),
|
||||||
|
hasString: jest.fn().mockResolvedValue(true),
|
||||||
|
hasImage: jest.fn().mockResolvedValue(true),
|
||||||
|
hasURL: jest.fn().mockResolvedValue(true),
|
||||||
|
addListener: jest.fn(),
|
||||||
|
removeAllListeners: jest.fn(),
|
||||||
|
getEnforcing: jest.fn(),
|
||||||
|
useClipboard: jest.fn(() => ['mockString', jest.fn()]),
|
||||||
|
}));
|
||||||
|
|
||||||
jest.mock('@react-native-community/audio-toolkit', () => ({
|
jest.mock('@react-native-community/audio-toolkit', () => ({
|
||||||
Recorder: jest.fn().mockImplementation(() => ({
|
Recorder: jest.fn().mockImplementation(() => ({
|
||||||
prepare: jest.fn(),
|
prepare: jest.fn(),
|
||||||
|
|
Loading…
Reference in New Issue