This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| const { execSync, spawn } = require('child_process'); | |
| const chalk = require('chalk'); | |
| function hasChangesInRepo() { | |
| return execSync('git status --porcelain').toString().length > 0; | |
| } | |
| if (hasChangesInRepo()) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="36" android:compileSdkVersionCodename="16" package="com.whatsapp" platformBuildVersionCode="36" platformBuildVersionName="16"> | |
| <uses-feature android:name="android.hardware.bluetooth" android:required="false"/> | |
| <uses-feature android:name="android.hardware.location" android:required="false"/> | |
| <uses-feature android:name="android.hardware.location.network" android:required="false"/> | |
| <uses-feature android:name="android.hardware.location.gps" android:required="false"/> | |
| <uses-feature android:name="android.hardware.camera" android:required="false"/> | |
| <uses-feature android:name="android.hardware.nfc" android:required="false"/> | |
| <uses-feature android:name="android.hardware.wifi" android:required="false"/> | |
| <uses-feature android:name="android.hardware.telephony" android:required="false"/> | |
| <queries> |
OlderNewer