/Library/Application Support/Googledelete sub-folders unders this parent folder.
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
| Utility functions |
if (project.hasProperty('kapt')) {
kapt 'javax.xml.bind:jaxb-api:2.3.1'
kapt 'com.sun.xml.bind:jaxb-core:2.3.0.1'
kapt 'com.sun.xml.bind:jaxb-impl:2.3.2'
}
annotationProcessor 'javax.xml.bind:jaxb-api:2.3.1'
annotationProcessor 'com.sun.xml.bind:jaxb-core:2.3.0.1'
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
| https://android.googlesource.com/platform/frameworks/base/+/d136e51%5E!/ |
- Install Bundler - A dependency manager for Ruby
Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed.
#Inspecting video files with ffprobe (part of ffmpeg)
Today I needed to inspect a video file. So I thought: "Do it with ffmpeg!". I had a older version of ffmpeg installed via macports. So this is the process i went through.
If you don't have it already:
-
Install XCode and the XCode command-line tools
-
Update or install ffmpeg using macports
sudo port selfupdate
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
| /* | |
| Retrieved from https://web.archive.org/web/20160516165158/http://lexandera.com/2009/01/adding-alert-support-to-a-webview/ | |
| */ | |
| final WebView browser = (WebView)findViewById(R.id.browser); | |
| /* JavaScript must be enabled if you want it to work, obviously */ | |
| browser.getSettings().setJavaScriptEnabled(true); | |
| final Context myApp = this; | |