Questions tagged [beta]

Software development phase where the application is considered "feature complete" but still may have numerous bugs and usability issues.

708 questions
-1
votes
1 answer

Is there a R function which calculates the total french fama alpha in a data base per fund per year?

Current code: alpha_function <- function(x){ group_by(wficn, caldt) %>% lm(mktrf~excess_return, data = CRSP_database) %>% tidy() %>% [[1]]$estimate return() } Data: date, fundno, mtna, mret, mnav, mktrf, smb, hml, umd, rf Needed is a…
-1
votes
1 answer

Can't Update Beta App on Google Play Store

I want to test new version app with my testers. I created close test channel and typed tester's email addresses. The beta app was published. App name was changed on Google Play Store to " (beta)". But we can't update. There is no update button on…
Kerem
  • 1
-1
votes
2 answers

iOS Beta 5 SwiftUI List duplicates single item

Has anyone else seen this in iOS 14 Beta 5? It worked fine in previous betas... @State private var favorites = [Truck]() @State private var favoritesRetreived = false var body: some View { List { ForEach(favorites,…
Ferdinand Rios
  • 972
  • 6
  • 18
-1
votes
1 answer

500 error response when GET https://graph.microsoft.com/beta/me/devices

I am trying to reach the list of user devices with a GET here: https://graph.microsoft.com/beta/me/devices I am using the Graph Explorer at https://developer.microsoft.com/en-us/graph/graph-explorer I get a 500 error response. In addition to the…
-1
votes
2 answers

Xcode 11 (beta 4) can't compile my otherwise compiling project (under beta 3, 2 and 1): unrecognized compilation parameter -fstack-protector-all

It's july and, probably as many developers in the iOS departments of many companies, our company is also testing the different betas of Xcode 11 whenever they get released in the Apple developer portal. We're dealing with a somehow big solution made…
Isaac
  • 1,794
  • 4
  • 21
  • 41
-1
votes
2 answers

What is an easy way to distribute beta builds?

I have an app(an iphone game of about 35MB) that is in the beta testing stage. It has gotten too big to send as an email attachment and so I need a better way to distribute it. I don't have a good website set up so I was thinking about just…
Jamvert
  • 76
  • 5
-1
votes
1 answer

Installing watchOS 3.1

I am trying to install watchOS 3.1 on my Watch so to have it in tune with the beta version on my iPhone. I downloaded the Configuration Profile to automatically download updates but I have no cue about how to install it on my watch.
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
-1
votes
1 answer

iOS 10 Beta - Crash when calling dequeuereusableCellWithIdentifier

Dear fellow iOS Developers, ever since using iOS 10 Beta with Xcode 8 Beta and migrating to Swift 3 I have noticed strange behaviour in my app when using custom UITableViewCells. When I try to dequeue a custom cell in cellForRowAtIndexPath I get a…
Valentin
  • 29
  • 5
-1
votes
1 answer

angular 2 - tour of heroes - Unexpected token ] - polyfills library

export class Hero { id: number; name: string; } import {Component, OnInit} from 'angular2/core'; import {Hero} from './hero'; import {HeroDetailComponent} from './hero-detail.component'; import {HeroService} from…
tubbsy
  • 61
  • 8
-1
votes
1 answer

Distribute APK for an Open Beta with like unique URL or a Code system

I am evaluating options to do a Open Beta phase via our website. We have a registration system operational on our website. My idea is to send au automatic Email containing an URL and a code for the Beta tester. The Url would allow him to download…
Heretyk
  • 173
  • 1
  • 1
  • 8
-1
votes
1 answer

How to install Windows Phone app for beta testing without purchasing a certificate

I have a Windows Phone individual developer account and need to do a beta testing internally. I used Appaloosa and HockeyApp for this purpose. But, when I try to download the app and install it on my Windows Phone, it shows a message "Can't install…
-1
votes
1 answer

How to make a plot of generalized beta distribution?

I am trying to plot the beta-gumbel distribution using R(software) by the following, The genreal idea is that, in the pdf of beta distribution, instead of plugging in x, we use the cdf of gumbel instead. But I couldn't get the right plot. x <-…
user2350622
  • 77
  • 1
  • 3
  • 13
-2
votes
4 answers

iPhone - beta debugging with many distant users before publishing onto the AppStore

I have a completed application and I'd like to make it test by some friends before publishing it onto the AppStore. How may I do this without having to connect their phone onto my computer ?
Oliver
  • 23,072
  • 33
  • 138
  • 230
-2
votes
1 answer

How do I add the Beta Ribbon to my site Title?

I need to add a Beta ribbon my site title. I have a wordpress website and would like to add a Beta logo|stamp to the site? How do I go about doing this? I am launching it to the public, probably a little to early, so I would like to add a ribbon to…
-2
votes
2 answers

Swift 2.0 String to Integer

So I've been trying to convert this string of input numbers into variables but for some reason, every possible combination I try, it always gives me an error @IBOutlet weak var age: UITextField! @IBOutlet weak var finalYears: UILabel! @IBAction func…
Oliver
  • 3
  • 5
1 2 3
47
48