Fix build issue

This commit is contained in:
Thomas 2025-02-18 12:13:56 +01:00
parent dd0a432b02
commit 96a43a7c32
4 changed files with 9 additions and 17 deletions

View file

@ -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">&lt;! [CDATA [உள்ளடக்கத்தைக் காட்டு&gt;]&gt;&gt;</string>
<string name="hide_content">&lt;! [CDATA [உள்ளடக்கத்தை மறைக்க &lt;]]&gt;</string>
<string name="show_content"><![CDATA[உள்ளடக்கத்தைக் காட்டு&gt;]]></string>
<string name="hide_content"><![CDATA[உள்ளடக்கத்தை மறைக்க &lt;]]></string>
<string name="stop_recording">பதிவு செய்வதை நிறுத்துங்கள்</string>
<string name="report_title">அறிக்கை %1$s</string>
<string name="report_indication_title_status">இந்த இடுகையுடன் என்ன நடக்கிறது என்று சொல்லுங்கள்</string>

View file

@ -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'

View file

@ -4,7 +4,7 @@ android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 8
minSdkVersion 14
targetSdkVersion 33
}
buildTypes {

View file

@ -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);
}
}