X Tutup
Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/RoboGuiceExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
def AAVersion = '4.2.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.1.0
def AAVersion = '4.3.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.2.0

dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
Expand All @@ -44,4 +44,4 @@ android {
// see https://github.com/roboguice/roboguice/issues/295
}

}
}
4 changes: 2 additions & 2 deletions examples/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
def AAVersion = '4.2.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.1.0
def AAVersion = '4.3.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.2.0

dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
Expand All @@ -32,4 +32,4 @@ android {
minSdkVersion 9
targetSdkVersion 23
}
}
}
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
def AAVersion = '4.2.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.1.0
def AAVersion = '4.3.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 4.2.0

dependencies {
kapt "org.androidannotations:androidannotations:$AAVersion"
Expand Down
4 changes: 2 additions & 2 deletions examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<android.platform>16</android.platform>
<java.version>1.6</java.version>

<!-- change this to your desired version, for example the latest stable: 4.1.0 -->
<androidannotations.version>4.2.0-SNAPSHOT</androidannotations.version>
<!-- change this to your desired version, for example the latest stable: 4.2.0 -->
<androidannotations.version>4.3.0-SNAPSHOT</androidannotations.version>
</properties>

<dependencies>
Expand Down
X Tutup