我想在它的启动画面上提供我的pebble应用程序的应用程序版本。但我怎样才能访问它?
有没有办法从手表或JS中的appinfo.json访问信息?我至少需要版本字符串。
答案 0 :(得分:1)
将应用版本放入C代码的最简单方法是修改wscript以生成包含它的头文件,作为构建过程的一部分。
Pebble论坛上的用户pedrolane提供了他的wscript作为示例,您可以在此处找到:https://code.google.com/p/pebble-for-gopro/source/browse/wscript?spec=svn8634d98109cb03c30c4dab52e665c4ac548cb20a&r=8634d98109cb03c30c4dab52e665c4ac548cb20a
这是文件的内容。 generate_appinfo
函数读入appinfo.json,获取versionLabel并将其写入generated/appinfo.h
。
import json
top = '.'
out = 'build'
def options(ctx):
ctx.load('pebble_sdk')
def configure(ctx):
ctx.load('pebble_sdk')
def build(ctx):
ctx.load('pebble_sdk')
def generate_appinfo(task):
src = task.inputs[0].abspath()
tgt = task.outputs[0].abspath()
json_data=open(src)
data = json.load(json_data)
f = open(tgt,'w')
f.write('#ifndef appinfo_h\n')
f.write('#define appinfo_h\n')
f.write('#define VERSION_LABEL "' + data["versionLabel"] + '"\n')
f.write('#endif\n')
f.close()
ctx(
rule = generate_appinfo,
source = 'appinfo.json',
target = 'generated/appinfo.h',
)
ctx.pbl_program(source=ctx.path.ant_glob(['src/**/*.c','generated/**/*.c']),
includes='generated',
target='pebble-app.elf')
ctx.pbl_bundle(elf='pebble-app.elf',
js=ctx.path.ant_glob('src/js/**/*.js'))
要使用该值,请添加appinfo.h
并使用VERSION_LABEL
。
答案 1 :(得分:-1)
另一个没有代码生成的hacky解决方案,在main.c中添加以下行:
#include "pebble_app_info.h"
extern const PebbleAppInfo __pbl_app_info;
然后你就可以得到你的应用版本:
__pbl_app_info.app_version.major
__pbl_app_info.app_version.minor