This file contains 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 | |
# | |
# Copyright (c) 2013 Shotaro Uchida <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains 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
diff -r 25d3cad95e8b build.gradle | |
--- a/build.gradle Thu Nov 28 08:49:58 2013 -0800 | |
+++ b/build.gradle Wed Dec 04 15:35:16 2013 -0800 | |
@@ -1128,8 +1128,8 @@ | |
if (IS_COMPILE_PANGO) { | |
// TODO: embedded support | |
- addNative(project, "fontFreetype", ["linux"]) | |
- addNative(project, "fontPango", ["linux"]) | |
+ addNative(project, "fontFreetype", ["linux", "armv7hf"]) |
This file contains 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
import java.nio.CharBuffer; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class Parser { | |
public static final char START_OBJECT = '{'; | |
public static final char KEY = ':'; | |
public static final char VALUE = ','; | |
public static final char END_OBJECT = '}'; |
This file contains 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
OAuth 2.0 draft30 Note. | |
1.7. HTTP Redirections | |
* We use '307 Temporary Redirect' via #redirectTemporary method generally. | |
1.8. Interoperability | |
* TBD: Client implementations. | |
2. Client Registration | |
* ClientStore has 2 methods to specify client type(confidential/public). |
NewerOlder