Gradle version updates, remove ads, and other changes for successful compilations.

This commit is contained in:
2025-07-21 20:28:06 -07:00
parent eedf4e22e7
commit 9c895c1d72
11 changed files with 41 additions and 129 deletions

View File

@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'
android {
namespace "com.hyperling.apps.games"
compileSdkVersion 36
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "apps.hyperling.com.platformer"
minSdkVersion 14
@@ -20,11 +20,19 @@ android {
}
dependencies {
/*
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.google.android.gms:play-services-ads:9.8.0'
testCompile 'junit:junit:4.12'
*/
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'
}