chore(release): v0.3.4 — enable Family Controls (Apple distribution entitlement approved)

This commit is contained in:
chahinebrini 2026-05-20 07:13:13 +02:00
parent ea152a9169
commit c6604f02df
3 changed files with 7 additions and 5 deletions

View File

@ -4,7 +4,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
...config, ...config,
name: "ReBreak", name: "ReBreak",
slug: "rebreak", slug: "rebreak",
version: "0.3.3", version: "0.3.4",
orientation: "portrait", orientation: "portrait",
icon: "./assets/icon.png", icon: "./assets/icon.png",
scheme: "rebreak", scheme: "rebreak",
@ -20,7 +20,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
ios: { ios: {
supportsTablet: true, supportsTablet: true,
bundleIdentifier: "org.rebreak.app", bundleIdentifier: "org.rebreak.app",
buildNumber: "12", buildNumber: "13",
// Apple Sign-In Entitlement — Pflicht für expo-apple-authentication nativen // Apple Sign-In Entitlement — Pflicht für expo-apple-authentication nativen
// signInAsync()-Flow. Ohne flag generiert Expo's prebuild den // signInAsync()-Flow. Ohne flag generiert Expo's prebuild den
// com.apple.developer.applesignin-Entitlement nicht in die .entitlements. // com.apple.developer.applesignin-Entitlement nicht in die .entitlements.

View File

@ -21,7 +21,8 @@
"preview": { "preview": {
"distribution": "store", "distribution": "store",
"env": { "env": {
"EXPO_PUBLIC_API_URL": "https://staging.rebreak.org" "EXPO_PUBLIC_API_URL": "https://staging.rebreak.org",
"REBREAK_ENABLE_FAMILY_CONTROLS": "1"
}, },
"ios": { "ios": {
"resourceClass": "m-medium", "resourceClass": "m-medium",
@ -35,7 +36,8 @@
"production": { "production": {
"env": { "env": {
"EXPO_PUBLIC_API_URL": "https://staging.rebreak.org", "EXPO_PUBLIC_API_URL": "https://staging.rebreak.org",
"EXPO_PUBLIC_ENABLE_DEBUG": "1" "EXPO_PUBLIC_ENABLE_DEBUG": "1",
"REBREAK_ENABLE_FAMILY_CONTROLS": "1"
}, },
"ios": { "ios": {
"resourceClass": "m-medium", "resourceClass": "m-medium",

View File

@ -1,6 +1,6 @@
{ {
"name": "rebreak-native", "name": "rebreak-native",
"version": "0.3.3", "version": "0.3.4",
"private": true, "private": true,
"main": "expo-router/entry", "main": "expo-router/entry",
"scripts": { "scripts": {