apply plugin: 'com.android.application'

android {
    compileSdk 35
	defaultConfig {
		applicationId 'sngine.app.webview'
        minSdk 27
        targetSdk 35
		versionCode 12
		versionName '12'
		testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
		multiDexEnabled true
	}
	buildTypes {
		release {
			minifyEnabled false
			proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
		}
	}
	productFlavors {
	}
	namespace 'sngine.app.webview'
}

dependencies {
	implementation fileTree(include: ['*.jar'], dir: 'libs')
	androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
	implementation 'androidx.legacy:legacy-support-v4:1.0.0'
	implementation 'androidx.appcompat:appcompat:1.7.1'
	testImplementation 'junit:junit:4.13.2'
	implementation 'com.google.android.gms:play-services-auth:21.4.0'
	implementation 'com.google.android.gms:play-services-location:21.3.0'

	// OneSignal SDK
	implementation 'com.onesignal:OneSignal:[5.0.0, 5.99.99]'
}