Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change capital package names #54

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 18 additions & 16 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
![AppVeyor branch](https://img.shields.io/appveyor/ci/gruntjs/grunt/master.svg)
[![](https://jitpack.io/v/hani-momanii/SuperNova-Emoji.svg)](https://jitpack.io/#hani-momanii/SuperNova-Emoji)

## [Release Notes](https://github.com/hani-momanii/SuperNova-Emoji/releases)
## [Release Notes](https://github.com/chulunus/SuperNova-Emoji/releases)


## SuperNova-Emoji

[SuperNova-Emoji](https://github.com/hani-momanii/SuperNova-Emoji) is a library to implement and render emojis.
[SuperNova-Emoji](https://github.com/chulunus/SuperNova-Emoji) is a library to implement and render emojis.
Minimum SDK Level: 9 (2.3)


![image](https://github.com/hani-momanii/SuperNova-Emoji/blob/master/vid.gif)
![image](https://github.com/chulunus/SuperNova-Emoji/blob/master/vid.gif)

## Contact

Expand All @@ -38,7 +38,7 @@ EmojIconActions emojIcon=new EmojIconActions(this,rootView,emojiconEditText,emo
emojIcon.ShowEmojIcon();
```

![image](https://github.com/hani-momanii/SuperNova-Emoji/blob/master/ios.png)
![image](https://github.com/chulunus/SuperNova-Emoji/blob/master/ios.png)


To use custom color :
Expand All @@ -47,7 +47,7 @@ EmojIconActions(Context ctx,View rootView,EmojiconEditText emojiconEditText,Imag
EmojIconActions emojIcon=new EmojIconActions(this,rootView,emojiconEditText,emojiButton,"#495C66","#DCE1E2","#E6EBEF");
emojIcon.ShowEmojIcon();
```
![image](https://github.com/hani-momanii/SuperNova-Emoji/blob/master/color.png)
![image](https://github.com/chulunus/SuperNova-Emoji/blob/master/color.png)



Expand All @@ -70,21 +70,21 @@ To use the device default emoji
emojIcon.setUseSystemEmoji(true);
emojiconEditText.setUseSystemEmoji(true);
```
![image](https://github.com/hani-momanii/SuperNova-Emoji/blob/master/def.png)
![image](https://github.com/chulunus/SuperNova-Emoji/blob/master/def.png)



## XML Usage

```
<hani.momanii.supernova_emoji_library.Helper.EmojiconEditText
<hani.momanii.supernova_emoji_library.helper.EmojiconEditText
android:id="@+id/emojicon_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
emojicon:emojiconSize="28sp" />


<hani.momanii.supernova_emoji_library.Helper.EmojiconTextView
<hani.momanii.supernova_emoji_library.helper.EmojiconTextView
android:id="@+id/emojicon_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand All @@ -109,7 +109,7 @@ Via Gradle:
repositories {
maven { url 'https://jitpack.io' }
}
compile 'com.github.hani-momanii:SuperNova-Emoji:1.1'
compile 'com.github.chulunus:SuperNova-Emoji:1.2'
```

## Acknowledgements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import android.widget.CompoundButton;
import android.widget.ImageView;

import hani.momanii.supernova_emoji_library.Actions.EmojIconActions;
import hani.momanii.supernova_emoji_library.Helper.EmojiconEditText;
import hani.momanii.supernova_emoji_library.Helper.EmojiconTextView;
import hani.momanii.supernova_emoji_library.actions.EmojIconActions;
import hani.momanii.supernova_emoji_library.helper.EmojiconEditText;
import hani.momanii.supernova_emoji_library.helper.EmojiconTextView;

public class MainActivity extends AppCompatActivity {

Expand Down
6 changes: 3 additions & 3 deletions example/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
android:src="@android:drawable/ic_menu_send"
/>

<hani.momanii.supernova_emoji_library.Helper.EmojiconEditText
<hani.momanii.supernova_emoji_library.helper.EmojiconEditText
android:id="@+id/emojicon_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand All @@ -41,7 +41,7 @@
emojicon:emojiconSize="28sp"/>


<hani.momanii.supernova_emoji_library.Helper.EmojiconEditText
<hani.momanii.supernova_emoji_library.helper.EmojiconEditText
android:id="@+id/emojicon_edit_text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand All @@ -60,7 +60,7 @@
android:checked="false"
android:text="Use System Default?"/>

<hani.momanii.supernova_emoji_library.Helper.EmojiconTextView
<hani.momanii.supernova_emoji_library.helper.EmojiconTextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package hani.momanii.supernova_emoji_library.Actions;
package hani.momanii.supernova_emoji_library.actions;

import android.content.Context;
import android.view.KeyEvent;
Expand All @@ -26,9 +26,9 @@
import java.util.Collections;
import java.util.List;

import hani.momanii.supernova_emoji_library.Helper.EmojiconEditText;
import hani.momanii.supernova_emoji_library.Helper.EmojiconGridView;
import hani.momanii.supernova_emoji_library.Helper.EmojiconsPopup;
import hani.momanii.supernova_emoji_library.helper.EmojiconEditText;
import hani.momanii.supernova_emoji_library.helper.EmojiconGridView;
import hani.momanii.supernova_emoji_library.helper.EmojiconsPopup;
import hani.momanii.supernova_emoji_library.R;
import hani.momanii.supernova_emoji_library.emoji.Emojicon;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@



package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.view.View;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.content.res.TypedArray;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.app.Activity;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.text.Spannable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.content.res.TypedArray;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.widget.GridView;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;
import android.content.Context;
import android.content.SharedPreferences;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.graphics.Canvas;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.content.Context;
import android.content.res.TypedArray;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package hani.momanii.supernova_emoji_library.Helper;
package hani.momanii.supernova_emoji_library.helper;

import android.app.Activity;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<hani.momanii.supernova_emoji_library.Helper.EmojiconTextView
<hani.momanii.supernova_emoji_library.helper.EmojiconTextView
android:layout_gravity="center"
android:id="@+id/emojicon_icon"
android:layout_width="36dip"
Expand Down