mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-04-05 06:30:01 +03:00
Fix build issue
This commit is contained in:
parent
dd0a432b02
commit
96a43a7c32
4 changed files with 9 additions and 17 deletions
|
@ -499,8 +499,8 @@
|
|||
<string name="post_message">செய்தியை இடுகையிடுதல்…</string>
|
||||
<string name="post_message_text">செய்தி %d/ %d</string>
|
||||
<string name="instance_health_uptime">நேரம்: %, 2f %%</string>
|
||||
<string name="show_content"><! [CDATA [உள்ளடக்கத்தைக் காட்டு>]>></string>
|
||||
<string name="hide_content"><! [CDATA [உள்ளடக்கத்தை மறைக்க <]]></string>
|
||||
<string name="show_content"><![CDATA[உள்ளடக்கத்தைக் காட்டு>]]></string>
|
||||
<string name="hide_content"><![CDATA[உள்ளடக்கத்தை மறைக்க <]]></string>
|
||||
<string name="stop_recording">பதிவு செய்வதை நிறுத்துங்கள்</string>
|
||||
<string name="report_title">அறிக்கை %1$s</string>
|
||||
<string name="report_indication_title_status">இந்த இடுகையுடன் என்ன நடக்கிறது என்று சொல்லுங்கள்</string>
|
||||
|
|
|
@ -6,7 +6,7 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion 15
|
||||
targetSdkVersion 33
|
||||
|
||||
multiDexEnabled true
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
}
|
||||
|
@ -25,11 +25,16 @@ android {
|
|||
// Add a new configuration to hold your dependencies
|
||||
configurations {
|
||||
libConfig
|
||||
implementation.exclude group: 'org.jetbrains', module: 'annotations'
|
||||
configureEach {
|
||||
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
//noinspection GradleCompatible
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
implementation 'androidx.appcompat:appcompat:1.5.1'
|
||||
implementation 'androidx.preference:preference:1.2.0'
|
||||
implementation 'com.google.android.material:material:1.8.0'
|
||||
|
|
|
@ -4,7 +4,7 @@ android {
|
|||
compileSdkVersion 33
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 8
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 33
|
||||
}
|
||||
buildTypes {
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
package de.timfreiheit.mathjax.android;
|
||||
|
||||
import android.app.Application;
|
||||
import android.test.ApplicationTestCase;
|
||||
|
||||
/**
|
||||
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
|
||||
*/
|
||||
public class ApplicationTest extends ApplicationTestCase<Application> {
|
||||
public ApplicationTest() {
|
||||
super(Application.class);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue