Skip to content

Commit

Permalink
v13.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Aug 15, 2022
1 parent d01fe7b commit 4b9f010
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 11 deletions.
15 changes: 10 additions & 5 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,25 @@ def reactNativeArchitectures() {
}

android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion
ndkVersion rootProject.ext.ndkVersion
externalNativeBuild {
cmake {
version rootProject.ext.cmakeVersion
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_18
targetCompatibility = JavaVersion.VERSION_18
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

defaultConfig {
applicationId "io.robertying.learnx"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 9202310
versionName "13.13.0"
versionCode 9202330
versionName "13.14.0"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down
6 changes: 6 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ buildscript {
compileSdkVersion = 33
targetSdkVersion = 33
ndkVersion = "25.0.8775105"
cmakeVersion = "3.22.1"
kotlinVersion = "1.7.10"
}
repositories {
Expand Down Expand Up @@ -43,6 +44,11 @@ subprojects { subproject ->
buildToolsVersion "33.0.0"
compileSdkVersion 33
ndkVersion "25.0.8775105"
externalNativeBuild {
cmake {
version "3.22.1"
}
}
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ target 'learnX' do
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
if target.respond_to?(:product_type) and target.product_type == 'com.apple.product-type.bundle'
target.build_configurations.each do |config|
config.build_settings['CODE_SIGN_IDENTITY[sdk=macosx*]'] = '-'
end
end
end

installer.pods_project.build_configurations.each do |config|
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,6 @@ SPEC CHECKSUMS:
SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9
Yoga: ff994563b2fd98c982ca58e8cd9db2cdaf4dda74

PODFILE CHECKSUM: 1954ad9ad88fad85fde41973f398fabf5cd2d644
PODFILE CHECKSUM: fda234aeaf5e12d5624a8aca672e86b4e2886f89

COCOAPODS: 1.11.3
8 changes: 4 additions & 4 deletions ios/learnX.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = learnX/learnX.entitlements;
CURRENT_PROJECT_VERSION = 2310;
CURRENT_PROJECT_VERSION = 2331;
DEVELOPMENT_TEAM = QX9PZ6H89F;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = learnX/Info.plist;
Expand All @@ -325,7 +325,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 13.13.0;
MARKETING_VERSION = 13.14.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -349,15 +349,15 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = learnX/learnX.entitlements;
CURRENT_PROJECT_VERSION = 2310;
CURRENT_PROJECT_VERSION = 2331;
DEVELOPMENT_TEAM = QX9PZ6H89F;
INFOPLIST_FILE = learnX/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 13.13.0;
MARKETING_VERSION = 13.14.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "learnX",
"version": "13.13.0",
"version": "13.14.0",
"private": true,
"scripts": {
"postinstall": "patch-package && chmod +x scripts/fix_react_native_interactable.sh && ./scripts/fix_react_native_interactable.sh",
Expand Down

0 comments on commit 4b9f010

Please sign in to comment.