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
[ | |
{ | |
"id": 0, | |
"type": "single", | |
"title": "Test 0", | |
"tag": "tag_0", | |
"values": [ | |
{ | |
"id": "0", | |
"title": "Value 0", |
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
apply plugin: 'com.android.application' | |
apply plugin: 'com.neenbedankt.android-apt' | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4' |
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
@AutoService(Processor.class) | |
public class RalmKitAnnotationProcessor extends AbstractProcessor { | |
private Types typeUtils; | |
private Elements elementUtils; | |
private Filer filer; | |
private Messager messager; | |
@Override | |
public synchronized void init(ProcessingEnvironment processingEnv) { |
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
<item> | |
<teacher>Жуков В.В.</teacher> | |
<id>1</id> | |
</item> | |
<item> | |
<teacher>Подгорный В.В.</teacher> | |
<id>666</id> | |
</item> |
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
Error:Execution failed for task ':Kinoplan:dexDevDebug'. | |
> com.android.ide.common.internal.LoggedErrorException: Failed to run command: | |
/Applications/adt-bundle/sdk/build-tools/20.0.0/dx --dex --num-threads=4 --output /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/dex/dev/debug /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/classes/dev/debug /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/dependency-cache/dev/debug /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/pre-dexed/dev/debug/autobahn-0.5.0-b61e3587fe64a8f1bb134f70da9d0db51e166b5d.jar /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/pre-dexed/dev/debug/classes-03444cdd1c6816122a471aa493c720eec7b3abe1.jar /Users/tkachenko/Documents/workspace/Kinoplan-Android/Kinoplan/build/intermediates/pre-dexed/dev/debug/classes-0fe647cd9a1abdf712c3c74d197920116572b67b.jar /Users/tkachenko/Doc |
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
private class FilterCursorWrapper extends CursorWrapper { | |
private String filter; | |
private int column; | |
private int[] index; | |
private int count=0; | |
private int pos=0; | |
public FilterCursorWrapper(Cursor cursor,String filter,int column) { | |
super(cursor); |