-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (26 loc) · 788 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (26 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins {
id 'com.android.library' version '8.3.0'
}
android {
namespace "com.test.androidlib"
compileSdk 34
buildToolsVersion = "34.0.0"
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
defaultConfig {
minSdk 23
targetSdk 34
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.activity:activity:1.9.3'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
}
task MCopyAndroidLibToUnity(type: Copy) {
from '../UnityAndroidLibTemplate.androidlib'
into '../../../Assets/Plugins/Android/UnityAndroidLibTemplate.androidlib'
}