97 lines
3.7 KiB
Groovy
97 lines
3.7 KiB
Groovy
buildscript {
|
||
repositories {
|
||
maven { url 'https://plugins.gradle.org/m2/'}
|
||
}
|
||
dependencies {
|
||
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.11.0, 0.99.99]'
|
||
}
|
||
}
|
||
|
||
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
|
||
apply plugin: 'com.android.application'
|
||
|
||
repositories {
|
||
maven { url 'https://maven.google.com' }
|
||
}
|
||
|
||
android {
|
||
compileSdkVersion 35
|
||
defaultConfig {
|
||
applicationId "ch.pizzalemon.android"
|
||
minSdkVersion 21
|
||
targetSdkVersion 35
|
||
versionCode 30// play store'daki version --> canlı: 0 - dahili test: 17
|
||
versionName "2.10" // play store'daki version --> canlı: 0.00 - dahili test: 1.17
|
||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||
multiDexEnabled true
|
||
}
|
||
buildTypes {
|
||
release {
|
||
minifyEnabled false
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
}
|
||
}
|
||
compileOptions {
|
||
sourceCompatibility JavaVersion.VERSION_1_8
|
||
targetCompatibility JavaVersion.VERSION_1_8
|
||
}
|
||
namespace 'ch.pizzalemon.android'
|
||
}
|
||
|
||
dependencies {
|
||
|
||
def retrofit_version = "2.9.0"
|
||
def okhttp_version = "4.9.1"
|
||
def butterknife_version = "10.2.3"
|
||
|
||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
|
||
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
||
exclude group: 'com.android.support', module: 'support-annotations'
|
||
})
|
||
|
||
implementation 'androidx.core:core:1.6.0'
|
||
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||
implementation 'com.google.android.material:material:1.4.0'
|
||
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
||
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
||
implementation 'androidx.cardview:cardview:1.0.0'
|
||
implementation 'androidx.multidex:multidex:2.0.1'
|
||
|
||
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
||
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
|
||
implementation 'com.squareup.picasso:picasso:2.71828'
|
||
implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
|
||
implementation "com.squareup.okhttp3:logging-interceptor:$okhttp_version"
|
||
|
||
implementation "com.jakewharton:butterknife:$butterknife_version"
|
||
annotationProcessor "com.jakewharton:butterknife-compiler:$butterknife_version"
|
||
|
||
implementation 'com.github.AndroidDeveloperLB:DialogShard:3'
|
||
implementation 'com.github.HITGIF:TextFieldBoxes:1.4.5'
|
||
implementation 'com.github.badoualy:stepper-indicator:1.0.7'
|
||
implementation 'com.github.luizgrp:SectionedRecyclerViewAdapter:v3.2.0'
|
||
|
||
implementation 'com.onesignal:OneSignal:[4.0.0, 4.99.99]'
|
||
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
||
implementation 'io.github.inflationx:calligraphy3:3.1.1'
|
||
implementation 'io.github.inflationx:viewpump:2.0.3'
|
||
implementation 'com.wdullaer:materialdatetimepicker:4.2.3'
|
||
implementation 'org.jsoup:jsoup:1.14.2'
|
||
implementation 'me.relex:circleindicator:2.1.6'
|
||
implementation 'com.braintreepayments.api:drop-in:6.17.0'
|
||
|
||
testImplementation 'junit:junit:4.13.2'
|
||
}
|
||
|
||
// Javac'ı ayrı JVM ile koştur ve iç modülleri aç
|
||
tasks.withType(JavaCompile).configureEach {
|
||
options.fork = true
|
||
options.forkOptions.jvmArgs += [
|
||
'--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED',
|
||
'--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED',
|
||
'--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED',
|
||
'--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED'
|
||
]
|
||
}
|