Skip to content

Commit

Permalink
feat: migrate to dw signing
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Dec 4, 2024
1 parent 8f61d27 commit aded6e2
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ kotlin {
cocoapods {
ios.deploymentTarget = "14.0"

version = "1.0"
version = "1.0.0"
summary = "Compose App"
homepage = "https://github.com/ooni/probe-multiplatform"

Expand Down Expand Up @@ -154,7 +154,7 @@ android {
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 1
versionName = "1.0"
versionName = "1.0.0"
resValue("string", "app_name", config.appName)
resValue("string", "ooni_run_enabled", config.supportsOoniRun.toString())
resValue(
Expand Down
2 changes: 1 addition & 1 deletion composeApp/composeApp.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'composeApp'
spec.version = '1.0'
spec.version = '1.0.0'
spec.homepage = 'https://github.com/ooni/probe-multiplatform'
spec.source = { :http=> ''}
spec.authors = ''
Expand Down
6 changes: 3 additions & 3 deletions iosApp/Configuration/Config.xcconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OONI_TEAM_ID=TT53HD8N84
OONI_PROBE_BUNDLE_ID=org.ooni.probe
OONI_PROBE_APP_NAME=OONI Probe
NMS_BUNDLE_ID=org.ooni.nms
NMS_BUNDLE_ID=com.dw.ooniprobe
NMS_APP_NAME=News Media Scan
NMS_TEAM_ID=TT53HD8N84
BUNDLE_ID=org.ooni.probe.OONIProbe
NMS_TEAM_ID=D6848Q89CC
APP_VERSION=1.0.0
4 changes: 2 additions & 2 deletions iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- composeApp (1.0):
- composeApp (1.0.0):
- Sentry (~> 8.38.0)
- libcrypto (2024.11.26-053946)
- libevent (2024.11.26-053946)
Expand Down Expand Up @@ -46,7 +46,7 @@ EXTERNAL SOURCES:
:podspec: https://github.com/ooni/probe-cli/releases/download/v3.24.0/oonimkall.podspec

SPEC CHECKSUMS:
composeApp: 675ce506dcd05e76ecb4fdd0f73a10d4af635af1
composeApp: 5ed6feb9cfd613a070c985600d56464a71da0b36
libcrypto: 7fb50209305641e986f6b1a1e4680ec4d71602e3
libevent: b9f2a7f3b682f7a072f4d21edf360052d3a591dc
libssl: 115acb9ff8f7d20f437ff8e112f1d21f210dad94
Expand Down
8 changes: 6 additions & 2 deletions iosApp/iosApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "${APP_VERSION}";
OTHER_LDFLAGS = (
"$(inherited)",
"-framework",
Expand Down Expand Up @@ -795,6 +796,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "${APP_VERSION}";
OTHER_LDFLAGS = (
"$(inherited)",
"-framework",
Expand Down Expand Up @@ -832,7 +834,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 1.0;
MARKETING_VERSION = "${APP_VERSION}";
PRODUCT_BUNDLE_IDENTIFIER = "${OONI_PROBE_BUNDLE_ID}.debug.share";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -865,7 +867,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 1.0;
MARKETING_VERSION = "${APP_VERSION}";
PRODUCT_BUNDLE_IDENTIFIER = "${OONI_PROBE_BUNDLE_ID}.share";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -896,6 +898,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "${APP_VERSION}";
OTHER_LDFLAGS = (
"$(inherited)",
"-framework",
Expand Down Expand Up @@ -931,6 +934,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "${APP_VERSION}";
OTHER_LDFLAGS = (
"$(inherited)",
"-framework",
Expand Down
2 changes: 1 addition & 1 deletion iosApp/iosApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(APP_VERSION)</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
2 changes: 1 addition & 1 deletion iosApp/iosApp/NewsMediaScan-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(APP_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down

0 comments on commit aded6e2

Please sign in to comment.