mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-19 12:18:59 +00:00
Merge pull request #225 from HabitRPG/clean-up-gradle-packages
Clean up gradle packages. Fixes #119
This commit is contained in:
commit
084cd4d6f6
3 changed files with 27 additions and 21 deletions
|
|
@ -61,10 +61,6 @@ dependencies {
|
|||
|
||||
// Icons
|
||||
compile 'com.mikepenz:fontawesome-typeface:4.4.0.1@aar'
|
||||
compile 'com.rengwuxian.materialedittext:library:2.1.4'
|
||||
|
||||
// Instant Layout Changing w/o recompile
|
||||
compile 'com.github.mmin18.layoutcast:library:1.+@aar'
|
||||
|
||||
// Changelog Fragment, minSDK 17
|
||||
compile 'com.github.porokoro.paperboy:paperboy:2.1.0'
|
||||
|
|
@ -94,7 +90,6 @@ dependencies {
|
|||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
//buildToolsVersion "23.0.0-rc2"
|
||||
buildToolsVersion "23.0.1"
|
||||
|
||||
lintOptions {
|
||||
|
|
|
|||
|
|
@ -11,15 +11,19 @@
|
|||
android:layout_marginRight="10dip"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<com.rengwuxian.materialedittext.MaterialEditText
|
||||
android:id="@+id/editText"
|
||||
android:layout_width="0dp"
|
||||
<android.support.design.widget.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="72dp"
|
||||
app:hintTextAppearance="@style/TextAppearance.AppCompat">
|
||||
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="8"
|
||||
|
||||
android:hint="Add Tag"
|
||||
app:met_floatingLabel="normal" />
|
||||
<EditText
|
||||
android:id="@+id/editText"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="8"
|
||||
android:textColor="@android:color/black"
|
||||
android:hint="Add Tag" />
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnAdd"
|
||||
|
|
|
|||
|
|
@ -15,17 +15,24 @@
|
|||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:orientation="horizontal"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.rengwuxian.materialedittext.MaterialEditText
|
||||
android:id="@+id/edit.new.message.text"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="5dp"
|
||||
<android.support.design.widget.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="72dp"
|
||||
app:hintTextAppearance="@style/TextAppearance.AppCompat">
|
||||
|
||||
android:hint="Write Message"
|
||||
app:met_floatingLabel="normal"
|
||||
android:layout_weight="1" />
|
||||
<EditText
|
||||
android:id="@+id/edit.new.message.text"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="5dp"
|
||||
android:hint="Write Message"
|
||||
android:textColor="@android:color/black"
|
||||
android:layout_weight="1" />
|
||||
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn.send.message"
|
||||
|
|
|
|||
Loading…
Reference in a new issue