From 8433966f37e5123f77b5bb37307b57098c8b1c5a Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 12 Jul 2025 13:11:03 -0700 Subject: [PATCH] Remove the compile lines and add what Infinite Timer is doing. --- app/build.gradle | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 2c690e9..a9ebcb3 100755 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,7 +5,7 @@ android { compileSdkVersion 36 defaultConfig { applicationId "com.hyperling.carbupbeta" - minSdkVersion 8 + minSdkVersion 14 targetSdkVersion 36 versionCode 7 versionName "1.0.0" @@ -19,7 +19,16 @@ android { } dependencies { + /* compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.google.android.gms:play-services-ads:8.3.0' + */ + + implementation fileTree(dir: 'libs', include: ['*.jar']) + androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + // https://mvnrepository.com/artifact/com.android.support/appcompat-v7 + implementation group: 'com.android.support', name: 'appcompat-v7', version: '28.0.0' }