Skip to content

Commit dfd3ff1

Browse files
committed
Update examples to use AndroidAnnotations 3.3.1
1 parent a4c7488 commit dfd3ff1

8 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<factorypath>
22
<factorypathentry kind="PLUGIN" id="org.eclipse.jst.ws.annotations.core" enabled="true" runInBatchMode="false"/>
3-
<factorypathentry kind="WKSPJAR" id="/HelloWorldEclipse/compile-libs/androidannotations-3.2.jar" enabled="true" runInBatchMode="false"/>
4-
<factorypathentry kind="WKSPJAR" id="/HelloWorldEclipse/libs/androidannotations-api-3.2.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="WKSPJAR" id="/HelloWorldEclipse/compile-libs/androidannotations-3.3.1.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="WKSPJAR" id="/HelloWorldEclipse/libs/androidannotations-api-3.3.1.jar" enabled="true" runInBatchMode="false"/>
55
</factorypath>
Binary file not shown.
Binary file not shown.
-110 KB
Binary file not shown.
Binary file not shown.

examples/RoboGuiceExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
apply plugin: 'com.android.application'
1919
apply plugin: 'android-apt'
20-
def AAVersion = '3.3-SNAPSHOT' // change this to your desired version, for example the latest stable: 3.2
20+
def AAVersion = '4.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 3.3.1
2121

2222
dependencies {
2323
apt "org.androidannotations:androidannotations:$AAVersion"

examples/gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
apply plugin: 'com.android.application'
1919
apply plugin: 'android-apt'
20-
def AAVersion = '3.3-SNAPSHOT' // change this to your desired version, for example the latest stable: 3.2
20+
def AAVersion = '4.0-SNAPSHOT' // change this to your desired version, for example the latest stable: 3.3.1
2121

2222
dependencies {
2323
apt "org.androidannotations:androidannotations:$AAVersion"

examples/maveneclipse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<android.version>4.1.1.4</android.version>
1313
<android.platform>16</android.platform>
14-
<androidannotations.version>3.2</androidannotations.version>
14+
<androidannotations.version>3.3.1</androidannotations.version>
1515
<java.version>1.6</java.version>
1616
</properties>
1717

0 commit comments

Comments
 (0)