A command-line tool written in Rust to find the application ID of an Android app from the Google Play Store.
This tool scrapes the Google Play Store search results for a given app name and extracts the app ID (e.g., com.spotify.music) from the app's page URL.
- Ensure you have Rust and Cargo installed. If not, follow the instructions at rust-lang.org.
- Clone this repository:
git clone <repository-url> cd android-appid
- Build the project:
The executable will be located at
cargo build --release
target/release/android-appid.
To find the app ID for an application, run the following command:
cargo run -- --app-name "spotify"Or, if you have built the release executable:
./target/release/android-appid --app-name "spotify"$ cargo run -- --app-name "spotify"
🔎 Searching Google Play for: 'spotify'
✅ Extraction Successful for 'spotify':
App ID: com.spotify.music
Full URL: https://play.google.com/store/apps/details?id=com.spotify.musicTo run the tests, use the following command:
cargo testRichard Vidal-Dorsch
This project is licensed under the MIT License.