mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-20 12:49:02 +00:00
Initial setup
This commit is contained in:
parent
893c0dc599
commit
fa70b58e00
2 changed files with 12 additions and 2 deletions
|
|
@ -1,9 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.habitrpg.android.habitica"
|
||||
android:versionCode="24"
|
||||
android:versionName="0.0.24"
|
||||
android:screenOrientation="portrait" >
|
||||
android:screenOrientation="portrait">
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="15"
|
||||
|
|
@ -21,7 +22,8 @@
|
|||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AppTheme">
|
||||
android:theme="@style/AppTheme"
|
||||
tools:replace="android:icon">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:label="@string/app_name"
|
||||
|
|
|
|||
|
|
@ -26,6 +26,11 @@ repositories {
|
|||
url "http://dl.bintray.com/florent37/maven"
|
||||
}
|
||||
|
||||
// Emojis
|
||||
maven {
|
||||
url 'https://github.com/rockerhieu/mvn-repo/raw/master/'
|
||||
}
|
||||
|
||||
maven {
|
||||
url "https://jitpack.io"
|
||||
}
|
||||
|
|
@ -61,6 +66,9 @@ dependencies {
|
|||
// Icons
|
||||
compile 'com.mikepenz:fontawesome-typeface:4.4.0.1@aar'
|
||||
|
||||
// Emojis
|
||||
compile 'com.rockerhieu.emojicon:library:1.0'
|
||||
|
||||
// Changelog Fragment, minSDK 17
|
||||
compile 'com.github.porokoro.paperboy:paperboy:2.1.0'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue