// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:8.0.1' } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } ext { if (!project.hasProperty('targetGame')) { targetGame = "hello_world" } if (!project.hasProperty('targetArchs')) { targetArchs = ['Arm7', 'Arm8', 'X86_64', 'X86'] } else { targetArchs = project.getProperty('targetArchs').split(',') } applicationId = 'com.woom.game' ndkVersion = '25.2.9519653' minSdk = 24 compileSdk = 33 targetSdk = 33 if (!project.hasProperty('gn')) { gn = "gn" } if (!project.hasProperty('ninja')) { ninja = "ninja" } }