Ryan Burns
Ryan Burns
We have an activity with the following `onCreate()` implementation: ``` protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); // And more } ``` and the following manifest declaration: ``` ``` However,...
We have the following `StrictMode` settings: ``` StrictMode.setThreadPolicy(StrictMode.ThreadPolicy.Builder() .detectDiskReads() .detectDiskWrites() .detectNetwork() .penaltyLog() .penaltyDeath() .build() ) ``` - File Explorer, Shared Preferences, and Screen Recorder all violate the `detectDiskReads()` policy -...
Hi, can you please create a swift-2.3 branch so I can create another PR to merge my swift 2.3 changes? Thanks so much!