Skip to content
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
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ You just have to add the namespace to be able to use custom attributes, and conf

Just add the following dependency to your project

```xml
<dependency>
<groupId>fr.dvilleneuve.android</groupId>
<artifactId>enhanced-edittext</artifactId>
<version>1.2</version>
<type>apklib</type>
</dependency>
```
repositories {
// ...
maven { url "https://jitpack.io" }
}
```

```
dependencies {
compile 'com.github.DayS:EnhancedEditText:-SNAPSHOT'
}
```

# License
Expand Down
6 changes: 3 additions & 3 deletions enhanced-edittext/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
apply plugin: 'release'

dependencies {
compile 'com.joanzapata.iconify:android-iconify:2.0.6'
compile 'com.joanzapata.iconify:android-iconify:2.1.0'
}

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
compileSdkVersion 21
buildToolsVersion "23.0.2"

sourceSets {
main {
Expand Down
Binary file not shown.
6 changes: 6 additions & 0 deletions enhanced-edittext/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Wed Oct 21 11:34:03 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
160 changes: 160 additions & 0 deletions enhanced-edittext/gradlew

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

90 changes: 90 additions & 0 deletions enhanced-edittext/gradlew.bat

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

Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
* It uses Iconify by Joan Zapata, licensed under Apache License version 2, which is compatible
* with this library's license.
*/
package android.widget;
package fr.dvilleneuve.android.widget;

import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.Button;

import com.joanzapata.iconify.Icon;
import fr.dvilleneuve.android.EnhancedText;
import fr.dvilleneuve.android.OnClickDrawableListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
* It uses Iconify by Joan Zapata, licensed under Apache License version 2, which is compatible
* with this library's license.
*/
package android.widget;
package fr.dvilleneuve.android.widget;

import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.EditText;

import com.joanzapata.iconify.Icon;
import fr.dvilleneuve.android.EnhancedText;
import fr.dvilleneuve.android.OnClickDrawableListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* It uses Iconify by Joan Zapata, licensed under Apache License version 2, which is compatible
* with this library's license.
*/
package android.widget;
package fr.dvilleneuve.android.widget;

import android.content.Context;
import android.content.res.ColorStateList;
Expand All @@ -26,6 +26,8 @@
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.widget.TextView;

import com.joanzapata.iconify.IconDrawable;
import com.joanzapata.iconify.Icon;
import fr.dvilleneuve.android.DrawablePosition;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
* It uses Iconify by Joan Zapata, licensed under Apache License version 2, which is compatible
* with this library's license.
*/
package android.widget;
package fr.dvilleneuve.android.widget;

import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.TextView;

import com.joanzapata.iconify.Icon;
import fr.dvilleneuve.android.EnhancedText;
import fr.dvilleneuve.android.OnClickDrawableListener;
Expand Down
Loading