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
--enable-decoder=aac | |
--enable-parser=aac | |
--enable-demuxer=aac |
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
public static final String TAG = SomeClass.class.getSimpleName(); | |
android.util.Log.d(TAG,...); | |
android.util.Log.v(TAG,...); |
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
-dontskipnonpubliclibraryclasses | |
-dontobfuscate | |
-forceprocessing | |
-optimizationpasses 5 | |
-keep class * extends android.app.Activity | |
-assumenosideeffects class android.util.Log { | |
public static *** d(...); | |
public static *** v(...); | |
} |
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
-dontskipnonpubliclibraryclasses | |
-dontobfuscate | |
-forceprocessing | |
-optimizationpasses 5 | |
-keep class * extends android.app.Activity | |
-assumenosideeffects class android.util.Log { | |
public static *** d(...); | |
public static *** v(...); | |
} |
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
#!/bin/bash | |
# fedora 17 | |
synclient HorizTwoFingerScroll=1 | |
synclient VertTwoFingerScroll=1 | |
synclient EmulateTwoFingerMinZ=40 | |
synclient EmulateTwoFingerMinW=8 | |
# fedora 16 | |
# synclient EmulateTwoFingerMinZ=28 |
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
$ sudo rpm -Uvh http://www.infinality.net/fedora/linux/infinality-repo-1.0-1.noarch.rpm | |
$ sudo yum -y install freetype-infinality fontconfig-infinality libXft-infinality |
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
# fedora 16 | |
# SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666" | |
# fedora 17 rule | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1949", ATTRS{idProduct}=="0006", MODE="0666" | |
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
# fedora 16 | |
# SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666" | |
# fedora 17 rule | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1949", ATTRS{idProduct}=="0006", MODE="0666" | |
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
# fedora 16 | |
# SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666" | |
# fedora 17 rule | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1949", ATTRS{idProduct}=="0006", MODE="0666" |
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
package com.android.filechooser.example; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.util.Log; | |
import com.iusenko.filechooser.FileChooserActivity; | |
public class MainActivity extends Activity { |