lib/android: use min_api_version in intent and shared_preferences
authorJean Privat <jean@pryen.org>
Thu, 28 Aug 2014 18:56:55 +0000 (14:56 -0400)
committerJean Privat <jean@pryen.org>
Fri, 29 Aug 2014 03:31:04 +0000 (23:31 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

lib/android/intent/intent_api11.nit
lib/android/intent/intent_api12.nit
lib/android/intent/intent_api14.nit
lib/android/intent/intent_api15.nit
lib/android/intent/intent_api16.nit
lib/android/intent/intent_api17.nit
lib/android/intent/intent_api18.nit
lib/android/intent/intent_api19.nit
lib/android/shared_preferences/shared_preferences_api11.nit

index bc97bb6..1ba5e88 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 11 services
-module intent_api11
+module intent_api11 is min_api_version(11)
 
 import intent
 
index b33b30f..ddf2cff 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 12 services
-module intent_api12
+module intent_api12 is min_api_version(12)
 
 import intent_api11
 
index c1f3ae1..3bb6576 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 14 services
-module intent_api14
+module intent_api14 is min_api_version(14)
 
 import intent_api12
 
index 4a73e44..4df53ce 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 15 services
-module intent_api15
+module intent_api15 is min_api_version(15)
 
 import intent_api14
 
index 85d73e8..74f6b0a 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 16 services
-module intent_api16
+module intent_api16 is min_api_version(16)
 
 import intent_api15
 
index 9e3ec13..0299a21 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 17 services
-module intent_api17
+module intent_api17 is min_api_version(17)
 
 import intent_api16
 
index 9e4e8a3..840bceb 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 18 services
-module intent_api18
+module intent_api18 is min_api_version(18)
 
 import intent_api17
 
index 9f4ac0d..73b1d8b 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines intent module to add API 19 services
-module intent_api19
+module intent_api19 is min_api_version(19)
 
 import intent_api18
 
index 4709ca5..50d88e9 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Refines shared_preferences module to add API 11 services
-module shared_preferences_api11
+module shared_preferences_api11 is min_api_version(11)
 
 import shared_preferences