Skip to content

Commit 981692b

Browse files
committed
Fix to px_9a in a few places where the default was still px_7a
1 parent 5c8dd35 commit 981692b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

USAGE-google-play.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ An AAS token should be printed. You can use this to download an app:
2020
apkeep -a com.instagram.android -d google-play -e 'someone@gmail.com' -t some_aas_token .
2121
```
2222

23-
This will use a default device configuration of `px_7a`, a timezone of `UTC`, and a locale of `en_US`. To specify a different device profile, use the `-o` option:
23+
This will use a default device configuration of `px_9a`, a timezone of `UTC`, and a locale of `en_US`. To specify a different device profile, use the `-o` option:
2424

2525
```shell
2626
apkeep -a com.instagram.android -d google-play -o device=ad_g3_pro -e 'someone@gmail.com' -t some_aas_token .

src/download_sources/google_play.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub async fn request_aas_token(
128128
oauth_token: &str,
129129
mut options: HashMap<&str, &str>,
130130
) {
131-
let device = options.remove("device").unwrap_or("px_7a");
131+
let device = options.remove("device").unwrap_or("px_9a");
132132
let mut api = Gpapi::new(device, email);
133133
match api.request_aas_token(oauth_token).await {
134134
Ok(()) => {

0 commit comments

Comments
 (0)