MAMapVersion.h 712 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MAMapVersion.h
  3. // MAMapKit
  4. //
  5. // Created by yi chen on 2/24/16.
  6. // Copyright © 2016 Amap. All rights reserved.
  7. //
  8. #import "MAConfig.h"
  9. #import <AMapFoundationKit/AMapFoundationVersion.h>
  10. #ifndef MAMapVersion_h
  11. #define MAMapVersion_h
  12. #define MAMapVersionNumber 60900
  13. #define MAMapMinRequiredFoundationVersion 10500
  14. // 依赖库版本检测
  15. #if AMapFoundationVersionNumber < MAMapMinRequiredFoundationVersion
  16. #error "The AMapFoundationKit version is less than minimum required, please update! Any questions please to visit http://lbs.amap.com"
  17. #endif
  18. FOUNDATION_EXTERN NSString * const MAMapKitVersion;
  19. FOUNDATION_EXTERN NSString * const MAMapKitName;
  20. #endif /* MAMapVersion_h */