Skip to content

Commit

Permalink
android-api: Set API level to version 1
Browse files Browse the repository at this point in the history
  • Loading branch information
morgenroth committed Jan 4, 2015
1 parent 07e285a commit c373da9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions android/ibrdtn-api/src/de/tubs/ibr/dtn/Services.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,22 @@

public class Services {
/**
* Version = 0 (< 0.13)
* Version = 0 (< 1.0)
* Version = 1 (>= 1.0)
*/
public static final Integer VERSION_APPLICATION = 0;
public static final Integer VERSION_APPLICATION = 1;

/**
* Version = 0 (< 0.13)
* Version = 0 (< 1.0)
* Version = 1 (>= 1.0)
*/
public static final Integer VERSION_MANAGER = 0;
public static final Integer VERSION_MANAGER = 1;

/**
* Version = 0 (< 0.13)
* Version = 0 (< 1.0)
* Version = 1 (>= 1.0)
*/
public static final Integer VERSION_SECURITY = 0;
public static final Integer VERSION_SECURITY = 1;

public static final Service SERVICE_APPLICATION = new Service(DTNService.class.getName(), VERSION_APPLICATION);
public static final Service SERVICE_MANAGER = new Service(DtnManager.class.getName(), VERSION_MANAGER);
Expand Down

0 comments on commit c373da9

Please sign in to comment.