Skip to content

Commit

Permalink
Allow auth.openai.com
Browse files Browse the repository at this point in the history
Update for Android 14 (SDK 34)
  • Loading branch information
woheller69 committed Aug 2, 2024
1 parent cd1c19f commit b06bbed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ plugins {
}

android {
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "org.woheller69.gptassist"
minSdk 21
targetSdk 33
versionCode 150
versionName "1.50"
targetSdk 34
versionCode 160
versionName "1.60"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ public void resetChat() {
private static void initURLs() {
//Allowed Domains
allowedDomains.add("cdn.auth0.com");
allowedDomains.add("auth.openai.com");
allowedDomains.add("chatgpt.com");
allowedDomains.add("openai.com");
allowedDomains.add("fileserviceuploadsperm.blob.core.windows.net");
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/160.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Allow auth.openai.com
Update for Android 14 (SDK 34)

0 comments on commit b06bbed

Please sign in to comment.