1108652823
* Add EmojiCompat * EmojiCompat doesn' replace all emojis anymore * This app should be now capable of loading a EmojiCompat-font located in a file somewhere inside the device's storage * Should now replace all emojis * Add EmojiCompat support to EditTextTyped * Provide EmojiCompat fonts * The app won't crash anymore when no emoji font is available. Emoji font should now be located at [Private external app directory]/files/EmojiCompat.ttf * Removed BundledEmojiCompat dependency Since this EmojiCompat-implementation does not rely on BundledEmojiCompat, there's no reason to have it enabled. * Update EditTextTyped.kt Since connection isn't assigned to (I tried doing so), it can be declared final/val again. * Update README.md * Add some non-working emoji preferences * Add a short font list for testing * Finished implementation * Add Twemoji to font list * Update documentation, more comments * Delete AssetEmojiCompat which is obsolete now * Update the font list * Update the font list * Fix font list & add Exception handling for malformed JSON files (hopefully) * More fixes. It should work now... * Removed AssetEmojiCompat (again) * Add most of the changes * Improved the EmojiCompat dialog's style * The font list is now based on a static layout without external files * Re-add the real font URL for Twemoji * Emoji-font captions are now translatable * Removed one unused String (loading) * Removed emoji fonts from this repo * Applied changes from the PR change requests * The correct emoji font will be selected after cancelling a change * Add details on the EmojiCompat fonts available (not shown yet) * Add licensing information on Twemoji and Blobmoji * Reworked some strings * Moved FileEmojiCompat to its own library * Update FileEmojiCompat to the latest version (1.0.3) * EmojiCompat bug should be fixed * Better handling of failed downloads * Removed one TODO Signed-off-by: Constantin A <10349490+C1710@users.noreply.github.com> * Update emoji attribution strings Signed-off-by: Constantin A <10349490+C1710@users.noreply.github.com> * Fixed some misspelled strings Signed-off-by: Constantin A <10349490+C1710@users.noreply.github.com>
99 lines
3.8 KiB
Groovy
99 lines
3.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.3'
|
|
defaultConfig {
|
|
applicationId "com.keylesspalace.tusky"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 38
|
|
versionName "1.8.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables.useSupportLibrary true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
applicationIdSuffix ".test"
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
ext.supportLibraryVersion = '27.1.1'
|
|
ext.daggerVersion = '2.16'
|
|
|
|
dependencies {
|
|
implementation('com.mikepenz:materialdrawer:6.0.7@aar') {
|
|
transitive = true
|
|
}
|
|
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
|
|
implementation "com.android.support:customtabs:$supportLibraryVersion"
|
|
implementation "com.android.support:recyclerview-v7:$supportLibraryVersion"
|
|
implementation "com.android.support:support-v13:$supportLibraryVersion"
|
|
implementation "com.android.support:design:$supportLibraryVersion"
|
|
implementation "com.android.support:exifinterface:$supportLibraryVersion"
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
|
|
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
|
implementation 'com.pkmmte.view:circularimageview:1.1'
|
|
implementation 'com.github.connyduck:sparkbutton:1.0.0'
|
|
implementation 'com.github.chrisbanes:PhotoView:2.1.3'
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.2.original@aar'
|
|
implementation('com.theartofdev.edmodo:android-image-cropper:2.7.0') {
|
|
exclude group: 'com.android.support'
|
|
}
|
|
implementation 'com.evernote:android-job:1.2.5'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
|
|
// EmojiCompat
|
|
implementation "com.android.support:support-emoji:$supportLibraryVersion"
|
|
implementation "com.android.support:support-emoji-appcompat:$supportLibraryVersion"
|
|
implementation "de.c1710:filemojicompat:1.0.5"
|
|
//room
|
|
implementation 'android.arch.persistence.room:runtime:1.0.0'
|
|
kapt 'android.arch.persistence.room:compiler:1.0.0'
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
|
implementation "com.google.dagger:dagger-android:$daggerVersion"
|
|
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
|
|
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:3.8"
|
|
testImplementation "org.mockito:mockito-inline:2.18.3"
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
|
|
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
|
}
|