Tabnine Logo
AppInfo
Code IndexAdd Tabnine to your IDE (free)

How to use
AppInfo
in
cn.ycbjie.ycaudioplayer

Best Java code snippets using cn.ycbjie.ycaudioplayer.AppInfo (Showing top 3 results out of 315)

origin: yangchong211/YCAudioPlayer

@Override
public AppInfo createFromParcel(Parcel source) {
  return new AppInfo(source);
}
origin: yangchong211/YCAudioPlayer

@Override
public void onBindViewHolder(final MyViewHolder holder, int position) {
  if(list!=null && list.size()>0){
    holder.tvName.setText(list.get(position).getKey());
    holder.tvInfo.setText(list.get(position).getValue());
  }
}
origin: yangchong211/YCAudioPlayer

@Override
public List<AppInfo> getAppInfo(String sign) throws RemoteException {
  List<AppInfo> list=new ArrayList<>();
  String aidlCheckAppInfoSign = AppToolUtils.getAidlCheckAppInfoSign();
  LogUtils.e("AppInfoService--AppInfoService",aidlCheckAppInfoSign+"-------------"+sign);
  if(!aidlCheckAppInfoSign.equals(sign)){
    return list;
  }
  list.add(new AppInfo("app版本号(versionName)", BuildConfig.VERSION_NAME));
  list.add(new AppInfo("app版本名称(versionCode)", BuildConfig.VERSION_CODE+""));
  list.add(new AppInfo("打包时间", BuildConfig.BUILD_TIME));
  list.add(new AppInfo("app包名", getPackageName()));
  list.add(new AppInfo("app作者", SPUtils.getInstance(Constant.SP_NAME).getString("name","杨充")));
  list.add(new AppInfo("app渠道", SPUtils.getInstance(Constant.SP_NAME).getString("channel")));
  list.add(new AppInfo("token", SPUtils.getInstance(Constant.SP_NAME).getString("token")));
  list.add(new AppInfo("App签名", AppToolUtils.getSingInfo(getApplicationContext(), getPackageName(), AppToolUtils.SHA1)));
  return list;
}
cn.ycbjie.ycaudioplayerAppInfo

Most used methods

  • <init>
  • getKey
  • getValue

Popular in Java

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • requestLocationUpdates (LocationManager)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now