richard pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
eab7ab80 by Richard Pospesel at 2023-08-11T18:28:28+00:00
Bug 40901: Prepare Tor Browser 13.0a2-build4
- - - - -
2 changed files:
- projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
- rbm.conf
Changes:
=====================================
projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
=====================================
@@ -43,6 +43,7 @@ Tor Browser 13.0a2 - August 08 2023
* Bug 40867: Create a RBM project for the unified Android repository [tor-browser-build]
* Bug 40917: Remove the uniffi-rs project [tor-browser-build]
* Bug 41899: Use LLD for Android [tor-browser]
+ * Bug 40920: Non-deterministic generation of baseline.profm file in Android apks [tor-browser-build]
Tor Browser 12.5.2 - July 31 2023
* All Platforms
=====================================
rbm.conf
=====================================
@@ -82,7 +82,7 @@ buildconf:
var:
torbrowser_version: '13.0a2'
- torbrowser_build: 'build3'
+ torbrowser_build: 'build4'
torbrowser_incremental_from:
- '13.0a1'
updater_enabled: 1
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
f724d7f9 by Richard Pospesel at 2023-08-10T23:09:50+00:00
Bug 40901: Prepare Tor Browser 13.0a2-build3
fixes tor-browser#41996: App includes com.google.android.gms.permission.AD_ID permission
- - - - -
2 changed files:
- projects/firefox-android/config
- rbm.conf
Changes:
=====================================
projects/firefox-android/config
=====================================
@@ -16,7 +16,7 @@ container:
var:
fenix_version: 115.2.0
browser_branch: 13.0-1
- browser_build: 3
+ browser_build: 4
platform_version: 115.0
variant: Beta
# This should be updated when the list of gradle dependencies is changed.
=====================================
rbm.conf
=====================================
@@ -82,7 +82,7 @@ buildconf:
var:
torbrowser_version: '13.0a2'
- torbrowser_build: 'build2'
+ torbrowser_build: 'build3'
torbrowser_incremental_from:
- '13.0a1'
updater_enabled: 1
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch firefox-android-115.2.0-13.0-1 at The Tor Project / Applications / firefox-android
Commits:
c0580e65 by Dan Ballard at 2023-08-10T16:28:57-07:00
fixup! Disable features and functionality
Bug 41996: Remove android manifest permissions for Google AD_ID
- - - - -
3 changed files:
- fenix/app/build.gradle
- fenix/app/src/main/AndroidManifest.xml
- fenix/buildSrc/src/main/java/FenixDependencies.kt
Changes:
=====================================
fenix/app/build.gradle
=====================================
@@ -636,8 +636,6 @@ dependencies {
implementation FenixDependencies.adjust
implementation FenixDependencies.installreferrer // Required by Adjust
- implementation FenixDependencies.google_ads_id // Required for the Google Advertising ID
-
// Required for in-app reviews
implementation FenixDependencies.google_play_review
implementation FenixDependencies.google_play_review_ktx
=====================================
fenix/app/src/main/AndroidManifest.xml
=====================================
@@ -19,9 +19,6 @@
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
- <!-- Needed for Google Play policy https://support.google.com/googleplay/android-developer/answer/6048248 -->
- <uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
-
<!-- Needed to prompt the user to give permission to install a downloaded apk -->
<uses-permission-sdk-23 android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
=====================================
fenix/buildSrc/src/main/java/FenixDependencies.kt
=====================================
@@ -61,8 +61,6 @@ object FenixVersions {
const val uiautomator = "2.2.0"
const val robolectric = "4.10.1"
- const val google_ads_id_version = "16.0.0"
-
const val google_play_review_version = "2.0.0"
// keep in sync with the versions used in AS.
@@ -169,8 +167,6 @@ object FenixDependencies {
const val uiautomator = "androidx.test.uiautomator:uiautomator:${FenixVersions.uiautomator}"
const val robolectric = "org.robolectric:robolectric:${FenixVersions.robolectric}"
- const val google_ads_id = "com.google.android.gms:play-services-ads-identifier:${FenixVersions.google_ads_id_version}"
-
// Required for in-app reviews
const val google_play_review = "com.google.android.play:review:${FenixVersions.google_play_review_version}"
const val google_play_review_ktx = "com.google.android.play:review-ktx:${FenixVersions.google_play_review_version}"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/c05…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/c05…
You're receiving this email because of your account on gitlab.torproject.org.