congrats Icon
New! Announcing our next generation AI code completions
Read here
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

  • Making http post requests using okhttp
  • getSystemService (Context)
  • requestLocationUpdates (LocationManager)
  • compareTo (BigDecimal)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • JTable (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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