Last active
August 29, 2015 14:09
-
-
Save mimming/469d6e01a8775deaf659 to your computer and use it in GitHub Desktop.
Inserting a non-ascii character into Firebase
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
pom.xml | |
src/main/java/com/firebase/repro/Main.java |
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.firebase.repro; | |
import com.firebase.client.Firebase; | |
public class Main { | |
public static void main(String[] args) throws InterruptedException { | |
Firebase firebaseRef = new Firebase("https://test-firebase-please-ignore.firebaseio.com/"); | |
firebaseRef.child("testplace").setValue("é"); | |
Thread.sleep(10000); | |
} | |
} |
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
<project> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.firebase.repro</groupId> | |
<artifactId>my-app</artifactId> | |
<version>1</version> | |
<dependencies> | |
<dependency> | |
<groupId>com.firebase</groupId> | |
<artifactId>firebase-client-android</artifactId> | |
<version>[2.0.0,)</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment