diff --git a/README.md b/README.md new file mode 100644 index 0000000..11bcfae --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# TranslateAPI +Simple Java library to translate your text using Google Translate without using of API KEY + +# Screenshot +![alt text](https://raw.githubusercontent.com/iammannan/TranslateAPI/master/demo2.png) + +# Download + +* Step 1. Add it in your root build.gradle at the end of repositories: +```java + allprojects { + repositories { + ... + maven { url 'https://jitpack.io' } + } + } +``` +* Step 2. Add the dependency +```java + dependencies { + implementation 'com.github.iammannan:TranslateAPI:1.0' + } +``` + * Full Code - Example + ```java + TranslateAPI translateAPI = new TranslateAPI( + Language.AUTO_DETECT, //Source Language + Language.TAMIL, //Target Language + "Your Text"); //Query Text + + translateAPI.setTranslateListener(new TranslateAPI.TranslateListener() { + @Override + public void onSuccess(String translatedText) { + Log.d(TAG, "onSuccess: "+translatedText); + textView.setText(translatedText); + } + + @Override + public void onFailure(String ErrorText) { + Log.d(TAG, "onFailure: "+ErrorText); + } + }); + ``` +![alt text](https://raw.githubusercontent.com/iammannan/TranslateAPI/master/demo1.png) + diff --git a/demo1.png b/demo1.png new file mode 100644 index 0000000..187a893 Binary files /dev/null and b/demo1.png differ diff --git a/demo2.png b/demo2.png new file mode 100644 index 0000000..d8f3f81 Binary files /dev/null and b/demo2.png differ