If you donĀ“t want to ship the secret codes feature of the SDK, add this to your application part of your manifest.
<receiver
android:name="com.sensorberg.sdk.SensorbergCodeReceiver"
tools:node="remove"
tools:selector="com.sensorberg.sdk" />
If you leave the receiver active you can also trigger it using adb:
#enable logging
adb shell am broadcast -W -a android.provider.Telephony.SECRET_CODE -d android_secret_code://73676723741
#disable logging
adb shell am broadcast -W -a android.provider.Telephony.SECRET_CODE -d android_secret_code://73676723740
To make sure this worked, test your final APK with apktool
apktool d -s -f <your-apk-file>
This tip works with all versions of the Android SDK.